bahar.wadia
Posts: 0
Joined: Wed Aug 07, 2013 2:05 am

How to change the Gridcell property "Background Transparent" using javascript?

I can add a background color using this...

$("[name=mobilegridcell_ItemPicture1]").css("background ", "#f2f2f2");

but I cannot remove or make the background transparent. The below does not work.

$("[name=mobilegridcell_ItemPicture1]").css("background ", "transparent");

Please help.

Thanks

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

How to change the Gridcell property "Background Transparent" using javascript?

Hello,

You can tick/untick "Background Transparent" in the properties dialog.
Image

You can also use opacity property. Create new CSS file and put below code there:

pre
.Facebook_Login_mobilegridcell_5 {
background: red!important;
opacity:0.1;
}
/pre

where Facebook_Login - page name
mobilegridcell_5 - cell name

Return to “Issues”