Content loading in header?

top50servers

Active Member
Ok I'm not sure if I am reading the wrong or if there is some issue with how Visio loads it.

I wanted to clean up my skin that I made from a template I got ( as you all know) and a friend recommended this site to improve my HTML/CSS layout.

I cleaned up over 300 errors and am quite proud of myself for that part but this error has me stumped.



If anyone is able to help me, this re-occurs on every print out and is the last error I am unable to solve. (Other then facebook and twitters data-**** errors.)

Link to Resource page : http://validator.w3.org/check?uri=h...alidator/1.3+http://validator.w3.org/services
 

Mark

Administrator
Staff member
that is a result of incorrect nesting of elements

in your case you open a <table> tag, which requires a table row <tr> next, but you have a <div>, divs are not allowed here.

You can probbaly just remove the opening table tag without any issues:

<table class="darkbg" cellpadding="2" cellspacing="1" width="100%">

and remove the closing table tab
</table>
 

top50servers

Active Member
Thanks Mark.

I would call the site pretty optimised now. Just need to remove all the dead CSS and that's my new skin completed!
 
Top