I put tip how to fi this bug in IE, but it was wrong, so I delete it. I know only the way to fix this bug in default template.
To fix it in Default Template add to: Themes/default/css/ie6.css
#forumposts .postarea
{
margin-left: 1%;
float: right;
}
How to fix it in this template - I don't know.
funcouldron - to change colour of links, and font you should edit style.css .
For example - to change link colour:
Edit:
/* Normal, standard links. */
a:link
{
color: #FFFFD2;
text-decoration: none;
}
a:visited
{
color: #FFFFD2;
text-decoration: none;
}
a:hover
{
color: white;
text-decoration: underline;
}
And change colors like this:
/* Normal, standard links. */
a:link
{
color: grey;
text-decoration: none;
}
a:visited
{
color: grey;
text-decoration: none;
}
a:hover
{
color: white;
text-decoration: underline;
}
To make font colour the same in all posts edit:
/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body, #windowbg
{
background: #1a1a1a;
color: #FFFFD2;
font: 11px;
font-family: tahoma;
border: solid 1px #252525;
}
And change color:
/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body, #windowbg
{
background: #1a1a1a;
color: grey;
font: 11px;
font-family: tahoma;
border: solid 1px #252525;
}
You can change almost every colour in the style.css , just play

Gentlemen (and ladies), I'm new at this forum. Maybe somewhere, somebody find a way to fix this bug ??