Hi Guys, I have a problem in viewing my web app in mozilla. In my web app I have a button whose css styles are as below:
.page_button
{
BACKGROUND-IMAGE: url(../images/pagebutton_bg2.png);
BORDER-LEFT:0px;
/*WIDTH: 100%;*/
CURSOR: pointer;
/*COLOR: #000000;*/
BORDER-BOTTOM:0px;
}
As above I have commented out the "Width:100%"
&"Color:#000000"
attributes as they are causing problems in Mozilla Firefox.(The width100% option makes my buttons appear very small) -- so i commented them.
But the problem here is that this button is inheriting the same Color:#000000
& Width:100%
from other parent elements.How can I stop this inheritance.
I even tried overriding those properties like : Color : null; Width : none
---> But this is not working.
I appreciate any suggestions to overcome this.
Regards, Vijay