Tagged: Accordion
We are trying to create an accordion where some items do not have more information and we do not want them to open. Other items on the list will have there normal accordion function and open. Is there a code we can add tp the text box of the items we don’t want to open that will stop them from opening?
or can we specify the accordion format for the other bullets, we are using minimal format, so its the plus sign
Hi,
Sorry for the late reply, you can prevent certain accordions from opening by using this css:
p[data-fake-id="#toggle-id-15"] {
pointer-events: none !important;
}
if you use your browser inspector you can find the “toggle id” by looking for this code:
or you can count top to bottom and try changing the number in the css, it should be right.
then just add this css for each one you don’t want to open.
Best regards,
Mike