treehouse : what would you like to learn today?
Web Design Web Development iOS Development

CSS Menu Font Size Issue

  • Hi there;

    A friend of mine has recently updated my website for me & unfortunately he is not available, the menu looked ok on every other page but on forum page the font size is smaller as compared to other pages.

    Here is the link to the particular problem. http://www.homemadetools.net/forum/

    Can you guys please let me know what exactly is wrong so I could update the website accordingly.

    Thanks.

  • In your CSS you have code that looks like this:

    .forumbit_nopost .forumbit_nopost .forumrow .forumdata,
     .forumbit_post .forumrow .forumdata {
      font-size: 11px;
    }
    

    Change it to a higher font size...

  • Thanks for your reply, this one is for forum posts not for the menu.

  • It seems you're using Vbulletin, which probably comes with it's own stylesheet...

    You have Arial as your font-family on your normal pages and on the forum is gets switched to Tahoma.

    What you could do is on line 1338 in your V Bulletin CSS file change this:

    body,
    legend {
      font-family:Arial, Helvetica, sans-serif;
      font-size: 1em;
    }
    
  • Great, I have got it, other problem there was of 13.75 defined for font-size without getting any property (px,pt) value.

    Thanks a lot Watson, you have made my day.