CSS
-
Hi
I would like to change some font colours in my blog – i cannot figure out the right css code
i would like to change the category tag colour, link colour within the post and the blog title colour and the social media links at the top rightmy blog is http://www.thefoodiecoupleblog.com and my theme is adelle
The blog I need help with is: (visible only to logged in users)
-
Howdy!
I’ve made some assumptions about the specific parts that you’re trying to target, but the CSS code you are looking for is as follows (you’ll need to customise the colors of course:
.entry-header .entry-meta a { color: red; } /* category tag color */ .entry-content a { color: pink; } /* link color within post */ #masthead > hgroup > h1 > a { color: gray; } /* blog title color */ #social-networks a { background: black; color: yellow; } /* social network links */You may find this article on the basics of CSS useful for when you want to make edits to your CSS in the suture: CSS Basics.
If you are unfamiliar with how to insert custom CSS into your site, read this tutorial: Editing CSS. I see that you already have the Custom Design upgrade, which allows you to do this.
- The topic ‘CSS’ is closed to new replies.