1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

CSS CSS web issues

Discussion in 'Web Development' started by djwilson, Oct 9, 2009.

  1. djwilson

    djwilson New Member

  2. djwilson

    djwilson New Member

    Now on www.thedjbusiness.co.uk and having issues with some pages such as 'club djs' page for some reason the footer text isnt going in the fotter in normal view on IE8 :mad: Help please!! Its only mucking up on a few pages but cant work out the issue. Thanks.
     
  3. vareside

    vareside New Member

    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.