Home › Forums › CSS › headings on hidden pics dont line up › Re: headings on hidden pics dont line up
November 11, 2009 at 7:22 pm
#66472
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
select the direct input tab, copy and paste your code into it and then start fixing the errors.