Quote:
|
Originally Posted by masterof_none
Times New Roman? I used verdana, it looks great. (on the Mac  )
and it looks OK on windows, although I'm a bit disappointed of the jagged rendering. I hope longhorn's rendering engine would would be better.
|
The excerpts look fine in Tahoma but in my browser (IE-variant) the excerpt titles are left in Times New Roman ...
Quote:
|
Originally Posted by masterof_none
I'll put the title as the link only after I know how to remove the ugly red color resulting from the link.
|
Just do like what you did for the horizontal links and the links on the panel. Since the main body is enclosed in a <DIV> of class "article", you can just add codes like below in the css file:
Code:
.article a:link,
.article a:active,
.article a:hover,
.article a:visited {
color:#000000;
text-decoration:underline;
}
also, I noticed from examining your main.css:
1) you misspelled "Arial" as "Ariel" at some places and "Helvetica" as "Helvatica" at all places ... maybe this is the cause of all those Times New Roman texts
2) line 67 (in .navigation a:visited {}): "color=#a30000;" -> "color: #a30000;"