amazing 0 Report post Posted June 5, 2011 I wish to change the text color of text in the footer... and only the footer.... thankyou. Share this post Link to post Share on other sites
kastelic 6 Report post Posted June 5, 2011 Get Firebug or Chrome to inspect the elements you need to target via CSS and put your CSS in Custom Code -> Custom CSS. To target only the footer precede each style rule with the #footer selector. The rest of it will depend on what you have in your footer, because different types of lists or elements will have different rules affecting them. Here's an example: #footer, #footer li.link-list a, #footer .latest_posts li .list-excerpt { color: blue } Share this post Link to post Share on other sites