
Originally Posted by
gsdcypher
which section(s) in the stylesheet.css control the alignment of the links in the ezpages header and the ezpages footer?
thanks!
If you view the source of your site for that section:
Code:
<div id="navSuppWrapper">
<div id="navSupp">
<div id="navEZPagesBot">
<div class="clearBoth"></div>
<!--bof-view cart and checkout now links-->
<!--eof-view cart and checkout now links-->
<a href="http://www.allk-9.com">Home</a> |
<a href="http://www.allk-9.com/account/login.html">Order Tracking</a> |
<a href="http://www.allk-9.com/pages/faq-pv-c0-11.html">FAQ</a> |
<a href="http://www.allk-9.com/contact-us.html">Contact Us</a> |
</div>
</div>
</div>
It tells you the three div's that you're working with.
Something like this should be good.
Code:
#navSuppWrapper {
width:950px;
margin:0 auto;
}
#navSupp {
margin:0 auto;
text-align:left;
padding-top:1em;
}