Tagged: Accordion
I would like to remove the borders from the + and – icons. How would I do that?
This changes the entire color but I only want to remove the border to + and -:
.toggle_icon .vert_icon, .toggle_icon .hor_icon, span.toggle_icon {
border-color: #666666;
}
thanks
Hey tn7phy26,
Please provide a link to the site/page in question.
Best regards,
Jordan Shannon
ok, I added it.
Hi,
Try this code in the General Styling > Quick CSS field:
span.toggle_icon {border-style: none!important; }
Best regards,
Mike
Thanks! That worked.
One more question:
Is it possible to have the + and – signs to the right side?
Hi,
Add this to quick css:
.toggle_icon{
right:10px!important;
left:0px!important;
position:absolute;
float:right!important;
}
Best regards,
Jordan Shannon
That didn’t work.
This is what I’m looking for: https://i.imgur.com/jLKsD0B.png
+ and – icons right-justified for the entire line.
Hi,
Please try replacing with this code:
.toggle_icon {
left: unset!important;
right: 10px!important;
}
Best regards,
Mike
great, thanks. That worked.