Need help customizing footer – font size and dividing line
-
Hi there, I need some help in making my footer on https://www.the-gardenschool.org/ look better than it currently does. It’s the text that reads:
The Garden School | Portland, Oregon 97212 | Contact: [email protected] | Copyright ? 2008
There are two things that I need to do:
1. Reduce the size of the font so that it’s smaller relative to the rest of the text on the page, and
2. Create a thin dividing line above the text so that it’s graphically separated from the body text.Here’s my footer entry in style.css:
/* Footer */
#footer {
clear:both;
width:660px;
margin:0 auto;
padding:5px 10px;
font-size:8px;
border:#fff 1px solid;
line-height:16px;
background:#eee url(images/top-bar.gif) repeat-x top;#footer p span
{
margin:-20px 0 0 0;
float:right;
}And here’s my footer.php code:
<div id=”footer”>
<?php bloginfo(‘name’);?> | Portland, Oregon 97212 | Contact: [email protected] | Copyright © <?php echo date(‘Y’);?></p>
</div><?php wp_footer();?>
</body>
</html>Thanks in advance for any and all help.
Best,
Roger
- The topic ‘Need help customizing footer – font size and dividing line’ is closed to new replies.