Cain
|
Font color inside the news faderhow do you change the color inside the newsfader? because its black by default, and my forum backround is black
|
admin (no pm's please)
|
I'd guess it is controlled by the css in the DIV
<div id="fscroller" style="font-size: 12; font-family: Verdana,Arial; font-weight: bold; width: 100%; height: 15px; padding: 2px; filter: alpha(opacity=0); -moz-opacity: 0.0;"></div>
|
Wills
|
Change the color here: (in red)
<div id="fscroller" style="font-size: 12; font-family: Verdana,Arial; font-weight: bold; width: 100%; height: 15px; padding: 2px; filter: alpha(opacity=0); -moz-opacity: 0.0;"></div><script language="JavaScript1.2" type="text/javascript">
<!--
var iDelay = 2000;var txtColor = "000000";var fContent = [];
<!-- BEGIN fader_row -->
fContent[{fader_row.MENU_NUMBER}-1] = "{fader_row.MENU_NAME}"
<!-- END fader_row -->
|
Wills
|
The problem I have is that if I make the fader items as links, the color changes to white, does anyone know how to define the link color in Admins 'make the fader items links' code below, I have tried normal html font tags in the link, but it doesn't work
<!-- BEGIN fader_row -->
if ("{fader_row.U_VIEW_MENU}"=="")
{
fContent[{fader_row.MENU_NUMBER}-1] = "{fader_row.MENU_NAME}"
}else
{
fContent[{fader_row.MENU_NUMBER}-1] = "<a href={fader_row.U_VIEW_MENU}>{fader_row.MENU_NAME}</font></a>"
}
<!-- END fader_row -->
|
admin (no pm's please)
|
</font> will do nothing.
you'd need <a class="fader"...
and then define a fader style in the css.
But you are going to need to read some css tutorials!
|
Brandon
|
A great CSS tutorial for you
http://howto.50webs.net/css/
|
Comkidwizzer3
|
what numbers repersent white?
|
Sukisue
|
FFFFFF
|
|
|