Thread: CSS web issues
View Single Post
  #3 (permalink)  
Old 10-13-2009, 02:56 PM
vareside's Avatar
vareside vareside is offline
Senior Member
 
Join Date: Jul 2007
Posts: 254
vareside is on a distinguished road
Default

By the way, your "Club DJ" page has an issue with the PHP include. You may have to fix something there. As I see, you have a new design there but I think the problem still exists. Anyway, this is what your current code bit is (last few lines):

</div>

</div><!-- end sidebar two -->
<div id="bottom" style="clear: both;"></div>
</div><!-- end page -->
<!-- start footer -->
</div>
</div>
<div id="footer">
<p>Copyright &copy; 2009. <a href="/">Home</a> | <a href="/news/">News/Events</a> | <a href="/club/">Club</a> | <a href="/mobile/">Mobile</a> | <a href="/equipment/">Equipment</a> | <a href="/contact/">Contact</a></p>

</div>
</div>
<!-- end footer -->

You should move the p-tag with all the links in into the div tag with the id set to bottom. So the part shall look like this:

<div id="bottom" style="clear: both;"><p>Copyright &copy; 2009. <a href="/">Home</a> | <a href="/news/">News/Events</a> | <a href="/club/">Club</a> | <a href="/mobile/">Mobile</a> | <a href="/equipment/">Equipment</a> | <a href="/contact/">Contact</a></p></div>

Then you can also remove the p tags if you want and do the rest with CSS like setting paddings and set the text-align.

Have fun coding.
Reply With Quote