Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS headings on hidden pics dont line up

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #26720
    S!lver
    Member

    http://www.beckenhauerconstruction.com/ … house.html

    on the above page, i have several headings containing hidden pictures that appear when you hover over the heading. The heading should be centered above the pictures when they are visible. Can anyone tell me what I have done wrong on January and February 2009, the Headings are not centered like the rest are??? Any help would be great!

    #66472
    cybershot
    Participant

    you are missing the closing </li> tags on all of your unordered lists. You have this

    <ul>
    <li>January
    </ul>

    Should be this

    <ul>
    <li>January</li>
    </ul>

    run your code through the validator

    http://validator.w3.org/

    select the direct input tab, copy and paste your code into it and then start fixing the errors.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.