Tagged: Accordion
Hello,
I’d like to remove the top and side borders from the accordion. This can be a site-wide change. Is it possible?
Thanks
Hey!
Try adding this code to the Quick CSS:
.togglecontainer .single_toggle:first-child .toggler, .togglecontainer .taglist + .single_toggle .toggler, .toggle_content{
border: 0 !important;
}
Cheers!
Josue
Thanks very much. Super close, but I was looking to keep the horizontal lines inside the accordion.
To clarify, it’s a FAQ page. I’d like lines separating each question. I just don’t want the entire FAQ enclosed in a box. Thus, how to remove only the top and side borders?
Thanks
Change code to:
.togglecontainer .single_toggle:first-child .toggler, .togglecontainer .taglist + .single_toggle .toggler, .toggle_content{
border-top: 0 !important;
border-bottom: 0 !important;
}
Cheers!
Josue
Great, thanks! Last question. How can I make the FAQ responses a little darker in font color? The questions are grey. I’d like the responses to be jet black, so they stand off the page a little more.
Here you go:
.toggle_content p {
color: black;
}
Cheers,
Josue
thank you!