Page 1 of 1
mobilecollapsblockcontent
Posted: Wed Jul 09, 2014 2:01 pm
by David6950977
Hello,
I'm trying to change the color of the mobilecollapsblockcontent with CSS. I was successful in changing the collapsible header color with,
html head + body [name=mobilecollapsblock_1] .ui-btn {
background-color: #dd9933;
}
html head + body [name=mobilecollapsblock_1] .ui-btn:hover {
background-color: #ff9933;
however, I haven't been able to change the color of the actual background of the collapsible.
Thanks
mobilecollapsblockcontent
Posted: Wed Jul 09, 2014 4:24 pm
by Evgene Karachevtsev
Hello David,
Could you please try this code:
code[dsid="mobilecollapsiblesetName"] .ui-collapsible-content {
background-color: #ff9933;
}/code
mobilecollapsblockcontent
Posted: Tue Jul 15, 2014 3:16 pm
by David6950977
Sorry for the delayed response, However, this didn't work.
mobilecollapsblockcontent
Posted: Tue Jul 15, 2014 4:48 pm
by Kateryna Grynko
Hi David,
Try the following CSS please:pre[name=mobilecollapsiblesetName] div{
background:red;
}/preWhere 'mobilecollapsiblesetName' is a name of mobilecollapsibleset component.
mobilecollapsblockcontent
Posted: Wed Jul 16, 2014 12:36 pm
by David6950977
Worked Great!!!!
Thank you