I have this so far:
<style type='text/css'>
.footer{
background: #fafafa;
border-top: solid 5px #004180;
border-left: solid 5px #004180;
border-right: solid 5px #004180;
border-bottom: solid 3px #004180
}
</style>
What I'm wondering, is why it has a blank space to the left every single time I try to use borders. I want it to line up with the edge of the page, on the white, without running in to the background (the grey).
Why does it keep doing this? Such a pain in the butt. The div is a grid_24 as shown below
<div class="grid_24 footer">
<ul class="grid_4">
<?php echo '<a href="'. tep_href_link(FILENAME_DEFAULT) .'">'. '> Home' .'</a>'; ?><br>
<?php echo '<a href="'. tep_href_link(FILENAME_CONTACT_US) .'">'. '> Contact Us' .'</a>'; ?><br>
<?php echo '<a href="'. tep_href_link(FILENAME_PRODUCTS_NEW) .'">'. '> New Products' .'</a>'; ?><br>
</ul>
<ul class="grid_5">
<?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . '> My Account' . '</a>'; ?><br>
<?php echo '<a href="' . tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL') . '">' . '> Create Account' . '</a>'; ?><br>
<?php echo '<a href="' . tep_href_link(FILENAME_LOGIN, '', 'SSL') . '">' . '> Log In' . '</a>'; ?><br>
<?php echo '<a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '">' . '> Log Off' . '</a>'; ?><br>
</ul>
<ul class="grid_5">
<?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL') . '">' . '> Order History' . '</a>'; ?><br>
<?php echo '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . '> Privacy Policy' . '</a>'; ?><br>
<?php echo '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . '> Conditions of Use' . '</a>'; ?><br>
<?php echo '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . '> Shipping & Returns' . '</a>'; ?><br>
</ul>
<ul class="grid_5">
<?php echo '<a href="' . tep_href_link(FILENAME_LOGIN, '', 'SSL') . '">' . '> Link' . '</a>'; ?><br>
</ul>
<div class="clear"></div></div>
ugh.jpg 38.43K
9 downloadsThanks for any help given
Edited by JustinS, Yesterday, 10:26 PM.









