validation trouble and yet another IE bug.
http://www.g33kz-inn.org/mweb/
I've just started this little project so it should take long to take a
look at it.
It wont validate and i dont quite nderstand why. Apperently you cant
have <a> tags inside <li> tags when running xhtml strict, and that
confuses me.
About the ie bug. My IE6 stretches the background image and that is a
problem i would like solved. works fine in FF though.
Regards
Re: validation trouble and yet another IE bug.
zacariaz [at] gmail.com wrote:
> http://www.g33kz-inn.org/mweb/
> I've just started this little project so it should take long to take a
> look at it.
>
> It wont validate and i dont quite nderstand why. Apperently you cant
> have <a> tags inside <li> tags when running xhtml strict, and that
> confuses me.
No you have typos in your markup:
<li><a href="#">home<a/></li>
^^
should be:
<li>home</li>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: validation trouble and yet another IE bug.
On 29 Nov., 19:14, "Jonathan N. Little" <lws4... [at] centralva.net> wrote:
> zacar... [at] gmail.com wrote:
> >http://www.g33kz-inn.org/mweb/
> > I've just started this little project so it should take long to take a
> > look at it.
>
> > It wont validate and i dont quite nderstand why. Apperently you cant
> > have <a> tags inside <li> tags when running xhtml strict, and that
> > confuses me.
>
> No you have typos in your markup:
>
> <li><a href="#">home<a/></li>
> ^^
> should be:
>
> <li>home</li>
>
> --
> Take care,
>
> Jonathan
> -------------------
> LITTLE WORKS STUDIOhttp://www.LittleWorksStudio.com
Of course, duh...
Thanks for the quick responce.