IB - Developer Center    Forums  Hop To Forum Categories  FOCUS/WebFOCUS    CSS guru: how do i change color of ddbox arrow
Go
New
Search
Notify
Tools
Reply
  
-star Rating Rate It!  Login/Join 
Expert
Posted
Could one of you css gurus tell me the css syntax for addressing the arrows in a dropdown box? and the arrow's background?
thanks
 
Posts: 2567 | Location: Manhattan | Registered: October 28, 2003Reply With QuoteEdit or Delete MessageReport This Post
Platinum Member
Posted Hide Post
For the standard shapes of the DHTML cursor (and some CSS sytax for setting the cursor shape), you can look here:
http://www.w3schools.com/css/tryit.asp?filename=trycss_cursor

Changing background of the cursor is not so easy. One of the way (at least available in IE 6) is to use the "nonstandard" cursor. The syntax:

style="cursor: url('../new_cursor.cur')"
You cannot use any "normal" graphic format like *.jpg, *.gif, *.png for the customized cursor. You have to use one of the "special cursor" formats: *.cur or *.ani.

You can also try to experiment with the standard shapes of the cursor, and another DHTML layer for changing the background. Something like the following example


<script type="text/javascript">
function popupMove(popup) {
var bkg = document.getElementById("cursorBackground");
popup.style.cursor = 'wait';
bkg.style.cursor = 'wait';
bkg.style.visibility = "";
bkg.style.background = "Red";
bkg.style.top = event.clientY - 8;
bkg.style.left = event.clientX - 8;
}
function popupOut(popup) {
popup.style.cursor = "normal";
document.getElementById("cursorBackground").style.visibility = "hidden";
}



style="position: absolute; z-index: 0; width: 200px; height: 200px;"
onmousemove="popupMove(this)" onmouseout="popupOut(this)">

style="z-index:10; position:absolute; height:16px; width:16px;">



Hope this helps
Grzegorz

This message has been edited. Last edited by: <Mabel>,
 
Posts: 127 | Location: Poland | Registered: May 12, 2003Reply With QuoteEdit or Delete MessageReport This Post
Expert
Posted Hide Post
thanks grzegorz, for your very kind reply; but its not the cursor i'm seeking to change. its the arrow and arrowbg in the dropdown box.
 
Posts: 2567 | Location: Manhattan | Registered: October 28, 2003Reply With QuoteEdit or Delete MessageReport This Post
Platinum Member
Posted Hide Post
Sorry, I did not read carefully.

Unfortunately, I do not think it is easy (if possible) to change the arrow color for the select tag (drop-down list). Below is the link to the discussion on the other forum:

http://www.webmasterworld.com/forum83/1100.htm

and citation (from another forum):
it is impossible to change the color of the arrow in a select box. this color is set by the "desktop theme" of your windows desktop.

I can think about replacing drop-down list with any scrolled iframe and the button, but it is a lot of work and it is rather doubtful if the effect is worth of the effort.

Regards
Grzegorz
 
Posts: 127 | Location: Poland | Registered: May 12, 2003Reply With QuoteEdit or Delete MessageReport This Post
Expert
Posted Hide Post
thanks for the ref. you're so kind. I'll keep looking.
btw, that webmasterworld forum looks great. i joined.
 
Posts: 2567 | Location: Manhattan | Registered: October 28, 2003Reply With QuoteEdit or Delete MessageReport This Post
 Previous Topic | Next Topic powered by eve community  
 

IB - Developer Center    Forums  Hop To Forum Categories  FOCUS/WebFOCUS    CSS guru: how do i change color of ddbox arrow

Copyright © 1996-2008 Information Builders, leaders in enterprise business intelligence.