Mis-Aligned Footer Fix – WordPress Default 1.5
-
I noticed that the default WordPress theme has a display issue in Firefox that causes the footer to be mis-aligned by a few pixels. It’s not a huge deal, but for those out there that would like a fix for this, the solution is fairly simple.
Open: wordpress_directory/wp-content/themes/default/header.php
Goto: Line 27
Replace:
#footer { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickfooter.jpg”) no-repeat bottom; border: none;}With:
#footer { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickfooter.jpg”) no-repeat bottom left; border: none; }
#footer { /margin-left: 2px; }This fixes the display issue in both Firefox and Internet Explorer.
- The topic ‘Mis-Aligned Footer Fix – WordPress Default 1.5’ is closed to new replies.