Translucent Scroller ... Text

J

JCO

I have some JavaScript code that I've been using in my website. It creates
a Translucent Stroller. It has some customization but not enough. I was
wondering if somebody could look at it and help me figure out how to force
the Text to be White. That is all I want to change.

Site:
www.dfwtejanos.com

Path:
/MyScripts/TranslucentScroller.js

Thanks
 
T

Thomas A. Rowe

Try doing the following in your external .js file by surround the text with

"News x of x: <font color = "#FFFFFF"><br>"

to

select 'Logowear'</font>"


--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
J

JCO

That killed the scroller so that it would not work!

I was thinking of a variable, in the script, at which I could then change
the variable at later times. Similar to the existing variable that controls
the bgcolor (background color).
 
T

Thomas A. Rowe

Sorry, changing the double quote to a single quote
<font color = "#FFFFFF">
to
<font color = '#FFFFFF'>

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
J

JCO

Okay, I will try that. I was able to get it to work by changing the text
color outside of the JavaScript. I think I can get it now.

I have another issue, but it may require another post. Here goes anyway.
On the same website I have the translucentscroller and I have the horizontal
menus (in JavaScript). Sometimes with the menu drops down, it drops
underneath the scroller, therefore you can't see it. Is there anyway to
ensure that the horiz menu is always on top (as people use them navigate).

Thanks
 
T

Thomas A. Rowe

I can't help you with the new issue, since I don't work with CSS/layers.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
M

Murray

Edit the menus and submenus so that they are all at a z-index of ... ohh ...
99 or so.
 
Top