I’d like to be able to disable one accordion (pictured https://cl.ly/rodb) while I updated the content.
Is this possible with CSS or something similar?
I’d like to be able to disable one accordion (pictured https://cl.ly/rodb) while I updated the content.
Is this possible with CSS or something similar?
Hi There,
Thanks for writing in!
Can you please elaborate your concern a bit?
The question you have asked seems confusing.
Thanks
Sure thing!
Basically, I want to make it un-clickable (greyed out).
Hi @dfinch
You can add a custom CSS class to that accordion item (let’s say “greyed”) by following this way:
Then, add this CSS snippet to (X > Theme Options > CSS):
.greyed {
pointer-events: none;
opacity: 0.3;
}
Thanks.