KurtWagnerOne / wp-constructor

Automatically exported from code.google.com/p/wp-constructor
0 stars 0 forks source link

Change font color in footer #157

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What version of the ... are you using?
1. Wordpress:3.1
2. Constructor:1.5.10
3. PHP:
4. Browser:firefox
5. OS:windows

What URL of your blog(s)?
1. http://www.goldeneaglescoaching.com

Please provide any additional information below.

My footer is purple and so is the text.  I need to know how to change the text 
color on just the footer.

Original issue reported on code.google.com by goldenea...@gmail.com on 1 Jun 2011 at 5:43

GoogleCodeExporter commented 8 years ago
Write CSS rule on CSS tab:
#footer, #footer a { 
    color: #998000 !important;
}

Original comment by AntonShe...@gmail.com on 1 Jun 2011 at 8:18

GoogleCodeExporter commented 8 years ago
THANK YOU THANK YOU THANK YOU! 

Now everything except one string of info shows up.  

I have "© 2010 & 2011 Golden Eagles, LLC -"  in the footer text area of the 
customize theme area followed by a link.  The link shows up but the text 
doesn't.

Original comment by goldenea...@gmail.com on 1 Jun 2011 at 8:39

GoogleCodeExporter commented 8 years ago
Small change in CSS:
#footer, #footer p, #footer a { 
    color: #998000 !important;
}

Original comment by AntonShe...@gmail.com on 10 Jul 2011 at 7:17