Solved

Accordion title disappears after clicking?

redlobb
New Member
8 0 0

Hello!
Can anyone help me with why my accordion questions on my FAQ page disappear after clicking on it? I want the question to stay visible and the answer to show up below it. 

https://only-eleven.myshopify.com/pages/faq

Thanks in advance 😄

Accepted Solution (1)

Savior
Shopify Partner
537 108 161

This is an accepted solution.

@redlobb 

There's a css which is affecting it. Please follow this steps:

1. Go to your store. Click on Actions > Edit Code

2. Go to Assets > theme.css add below lines at the bottom of the file.

.faq-accordion dt button[aria-expanded=true] {
display: block !important;
}

If helpful then please Like and Accept Solution.

banned

View solution in original post

Replies 3 (3)

BananaMoon
Excursionist
64 1 5

Hello, it lools like a very simple Javascript issue. Maybe you can ask a friend or kid more proficient with CSS? Have a nice day,

Savior
Shopify Partner
537 108 161

This is an accepted solution.

@redlobb 

There's a css which is affecting it. Please follow this steps:

1. Go to your store. Click on Actions > Edit Code

2. Go to Assets > theme.css add below lines at the bottom of the file.

.faq-accordion dt button[aria-expanded=true] {
display: block !important;
}

If helpful then please Like and Accept Solution.

banned
redlobb
New Member
8 0 0

Amazing that worked exactly how I needed it! Thank you so much 🙂