Dont worry. Getting rid of the scrollbar code fixed it and now it works. One thing though:
Can I intergrate this
code:
/* style to color links */
A:link, A:visited, A:hover {
text-decoration: none;
color: yellow;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 11px;
font-weight: bold
}
and this
code:
}
a:link , a:visited , a:active {
cursor : help;
}
into something like this:
code:
/* style to color links and change cursor */
A:link, A:visited, A:hover {
text-decoration: none;
color: yellow;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 11px;
font-weight: bold
}
cursor : help;
}