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 Re: headings on hidden pics dont line up

#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.