I was able to get the "New Reply" text white by changing this:
a.button
,
a.button:hover,
a.button:visited,
a.button:active {
background: #D1D6DD url(../../../images/tcat.png) repeat-x;
color: #000;
display: inline-block;
padding: 4px 8px;
margin: 2px 2px 6px 2px;
border: 1px solid #D1D6DD;
font-size: 14px;
}
To this:
a.button
,
a.button:hover,
a.button:visited,
a.button:active {
background: #D1D6DD url(../../../images/tcat.png) repeat-x;
color: #fff;
display: inline-block;
padding: 4px 8px;
margin: 2px 2px 6px 2px;
border: 1px solid #D1D6DD;
font-size: 14px;
}
I dunno if it will break anything elsewhere in the site, though.
This should fix the links in the upper panel section:
#panel .upper a
,
#panel .upper a:visited,
#panel .upper a:hover,
#panel .upper a:active {
color: #fff;
}
and this should fix the text up there:
#panel .upper {
background: #0f0f0f url(../../../images/tcat.png) repeat-x;
color: #fff;
border-top: 1px solid #444;
border-bottom: 1px solid #000;
padding: 7px;
clear: both;
}
Of course you don't actually insert Zelda's Link, you use
: link
(with no spaces).
a.button
,a.button:hover,
a.button:visited,
a.button:active {
background: #D1D6DD url(../../../images/tcat.png) repeat-x;
color: #000;
display: inline-block;
padding: 4px 8px;
margin: 2px 2px 6px 2px;
border: 1px solid #D1D6DD;
font-size: 14px;
}
To this:
a.button
,a.button:hover,
a.button:visited,
a.button:active {
background: #D1D6DD url(../../../images/tcat.png) repeat-x;
color: #fff;
display: inline-block;
padding: 4px 8px;
margin: 2px 2px 6px 2px;
border: 1px solid #D1D6DD;
font-size: 14px;
}
I dunno if it will break anything elsewhere in the site, though.
This should fix the links in the upper panel section:
#panel .upper a
,#panel .upper a:visited,
#panel .upper a:hover,
#panel .upper a:active {
color: #fff;
}
and this should fix the text up there:
#panel .upper {
background: #0f0f0f url(../../../images/tcat.png) repeat-x;
color: #fff;
border-top: 1px solid #444;
border-bottom: 1px solid #000;
padding: 7px;
clear: both;
}
Of course you don't actually insert Zelda's Link, you use
: link
(with no spaces).
