Announcement

Collapse
No announcement yet.

Website help!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Website help!

    Hi guys, having trouble trying to sort out my website. Wondering if you guys could let me know where im going wrong. Its pretty simple (but not for me!)

    if you go to http://www.boxbagz.com/beleh/home.php

    and click on the collections page you'll notice the navigation menu change color. Now there seems to be somthing overriding the CSS style i created. This only happens on the "collections page" and "contact us" page.

    Now im going through the code and i cant seem to figure it out. Pissing me off as i know its probably something really minor.

    Suggestions?

    Cheers!

    #2
    on your homepage you have this code:

    Code:
      <style type="text/css">
       
       A {text-decoration:none}
       
       .nav {
           font-family: "Century Gothic";
           font-size: 15px;
           font-style: normal;
           font-weight: bold;
           color: ff6633;
           
           
       }
       .nav:hover {
           font-family: "Century Gothic";
           font-size: 15px;
           font-style: normal;
           color: ffD1C2;
           font-weight: bold;
       }
       .style1 {color: #FFCC99}
       </style>
    This appears to be setting the styles to your menu - If you move this into the stylesheet .css file all the other pages should apply the style to the nav also

    Comment


      #3
      Yep, probably see that's the problem. Also on the "About us" page the scrolling text/pictures expands outside the border you've got with IE6.
      Lie with passion and be forever damned...

      Comment


        #4
        nice one! Thanks for the input.

        will report back soon

        Comment


          #5
          ok i think i found the problem. Its the DOCTYPE. im using the following

          <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
          "http://www.w3.org/TR/html4/loose.dtd">

          if i remove this from the code it seems to work. But when i include the DOCTYPE i get some errors. I've changed the homepage DOCTYPE to the one above, now the background colour for one of my tables is not working.

          Anyone know how i can get around this?

          Comment

          Working...
          X