On 09/03/2007, at 8:24 PM, Kenneth wrote: > If you're talking about the dimming of the buttons on the GUI, it > could be done like so: > > $(function(){ > $('.gui').hover(function(){ > $(this).animate({opacity: .3}, 1); > },function(){ > $(this).animate({opacity: 1}, 1); > }); > }); > >> On 3/9/07, Abel Tamayo <[EMAIL PROTECTED]> wrote:I'm sorry to >> post a non jQuery related question in the board, but I spent the >> whole day of yesterday on this and I need it to work for my jQuery >> plugin (So, somehow, it IS jQuery related). >> The thing is I have a list of buttons and I can't make the color >> selectors (foreground and hilite color) look like the ones here. I >> was wondering if anyone here would be so kind so that if I send >> him the HTML and the images they could fix it. I know it must be >> something really simple like adjusting position, float, display or >> something like that, but I'm stuck and don't know what to do. >> Again, it's only css related: no jQuery or programming of any >> kind. If someone would be so nice, please answer and I will send >> him the files (HTML and images, i repeat you don't have to worry >> about the code ). That or maybe someone can address me to a cs board. >> Thanks >> >> Abel.
If you mean the highlight effect when the buttons are hovered over: a.iconButton { background: transparent url(/path/to/iconWithTransparentBkgd.gif) no- repeat 50% 50%; border: 1px solid transparent; } a. iconButton:hover { background-color: #B6BDD2; border-color: #0A246A; } If you posted a demo online I could have used the class name you used instead of .iconButton, but you get the idea. Joel. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/