Posted by Jonathan N. Little on 04/23/07 21:57
roelof wrote:
> I can give you the url of one of the pages of my site build with the
> cms.
> It's : http://typo3.tamarawobben.nl
>
Quick look revealed:
1) New page do not use transitional DTD use:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
2) HTML does not use XHTML syntax "... />" Fix meta tags and link elements:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
3) If you use Firefox and view the Error Console, your will see your CSS
has errors, one example is
#menuz UL A {
display: block;
padding-top: 17px;
padding-left: 37px;
width: 182px;
background-color: #DCE3ED;
border-bottom: 1px solid #eee;
background-image: url(images/menu1.png);
background-repeat: repeat-x;
height: 27px; <<------------------------- missing closing '}'
#menuz UL A:hover {background: #80c8e6;}
4) Links with href="javascript..." very bad practice, href's should go
somewhere! I know you are using it just to expand your menu, but that
brings me to 4a
4a) Site navigation dependent upon JavaScript is also a *very bad*
idea...you should at least have a graceful fall-back if JavaScript is
disabled on not available.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|