Re: FAQ accordion section to Dawn theme

Solved

How can I create a two-column FAQ accordion section in Dawn theme?

onceupon
Excursionist
32 0 3

I created FAQ accodion section using the below tutorial.

https://scrowp.com/community/dawn-theme/how-to-add-faq-section-to-dawn-theme/

But I need to make it two column like the below image.  I tried float:left and width 50%. But its not working properly.

 

faq.png

Accepted Solution (1)
Abdosamer
Shopify Partner
894 163 181

This is an accepted solution.

@onceupon , go to base.css and add the following code :

.faq-wrapper--template--19871714410831__e1413d4a-0fe7-4593-9897-7d90b8876bf7 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
}
Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work

View solution in original post

Replies 4 (4)

Abdosamer
Shopify Partner
894 163 181

Hi @onceupon , can you share your store url?

Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work
onceupon
Excursionist
32 0 3

url sent to your mail. Thanks

Abdosamer
Shopify Partner
894 163 181

This is an accepted solution.

@onceupon , go to base.css and add the following code :

.faq-wrapper--template--19871714410831__e1413d4a-0fe7-4593-9897-7d90b8876bf7 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
}
Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work
onceupon
Excursionist
32 0 3

Thank you