Page 1 of 1

jQuery Application - Collapsible Plus and Minus indicators

Posted: Tue Sep 06, 2016 2:23 am
by Bruce Stuart

I'd like to globally change the "+" (expand) and "-" - collapse icons - on the collapsible sets - to the down arrow and up arrow respectively.

I've found this css from another post ....

[dsid=mobilecollapsibleset_X] .ui-collapsible-heading-toggle:after{
background:url("../image/ui-icon.png");
}

How do I change it to use the already loaded icons ....??

and is the attribute really called 'background' or is it just 'icon'...?

Thanks!


jQuery Application - Collapsible Plus and Minus indicators

Posted: Tue Sep 06, 2016 11:34 am
by saurabh8122815

Hi Bruce,

try this one,

.ui-icon-plus:after {
background-image : url(' your image src ') !important;
}

Regards