Can someone please tell me how to change the font color of the footer in darkmatter and also have the text surrounded by a border? If telling me does not work is there a faq or wiki that covers this. I can successfully accomplish this with html code in the site information screen, but I would prefer to do it the right way.

Comments

chrisopeterson’s picture

Sounds like you just need to change some css. I don't know for certain how the darkmatter theme is built but I assume its css file is called styles.css. Open that and change the code for the footer to something like this.

#footer {
color: #000000;
border: solid 1px #000000;
}

If your not sure what I'm talking about then check out this tutorial on CSS. http://www.w3.org/Style/CSS/

http://inletmedia.com

quikone’s picture

Does anyone know how to accomplish this with the Genesis theme?

Jeff Burnz’s picture

In the css file genesis_darkmatter.css add this around line 720...

#footer-message {
  border:4px solid #EEEEEE;
  color:yellow;
}

Modify to suit.

Get Firebug. <-- get this, it will help you a lot!

quikone’s picture

Works great,

Thanks