I would like to make some changes on my pages, but I'm really not sure how to do things in my mind.
I'm imagining doing a button style thing, in a table cell but no links on it except onClick's.
When you mouse over it, it's background goes 50% opacity white, but fonts remain still..
I found this:
background-color: white;
border: 1px solid black;
filter:alpha(opacity=25);
opacity: 0.5;
-moz-opacity:0.5;
cursor:hand;
But with this code, if opacity = 0 , fonts inside cell opacity goes 0 too, so not what I really wanted.
Problem is to make only "cell background or borders" visible on mouse over but remaining fonts same...
How can it be?