Change footer fonts
-
I am trying to change the font size of the information on the footer of my website both the name and location and the copyright. http://www.blanchardtrombone.com
This is the footer section of the style.css and when I change the font size nothing happens. Any suggestions?
Thanks!!
/* Footer */
#footer { padding: 30px 25px 20px 25px; color: #ccc; }
.footer_widget_area { float: left; width: 30%; margin-left: 40px; color: #ddd; }
.footer_widget_area a:hover { color: #fff; }
.footer_widget_area:first-child { margin-left: 0; }
.footer_widget_area ul { list-style: none; }
.footer_widget_area ul li { margin: 30px 0 0 0; padding: 0; }
.footer_widget_area ul li:first-child { margin-top: 0; }
.footer_widget_area ul li h2 { color: #fff; font-family: Arial; font-size: 8px; padding-bottom: 5px; border-bottom: 1px #ccc solid; }
.footer_widget_area ul li li { padding: 5px 0; margin: 0; }
.footer_widget_area ul li li:first-child { padding-top: 0; }.copyright { margin: 20px 10px 0 0; text-align: right; }
-
To change the copyright information
it’s the .copyright sectionTo change your Name and location, that’s in the .entry p section. If you change it in the .entry p section, it’s going to effect all the text in the section. Your best bet is to add an additional class to take care of the name and location.
There is no font size in the .copyright section. There is just the one single line listed above. Do I need to add that or is it somewhere else on another .css file?
Thanks
yes you can just add it.
it would be font-size: 12px;
The topic ‘Change footer fonts’ is closed to new replies.