Accordion footer menu

Accordion footer menu

DASCPA
Shopify Partner
91 0 23

Hello, Is it possible to add a accordian style menu to the footer section in Dawn. Similar to the below image.

Screenshot 2025-04-02 at 11.35.51.png

Replies 2 (2)

Arif_Shopidevs
Shopify Partner
521 43 93

@DASCPA 

 document.querySelectorAll(".footer-block__heading").forEach(function (heading) {
    heading.addEventListener("click", function () {
      let content = this.nextElementSibling;
      if (content.style.display === "block") {
        content.style.display = "none";
      } else {
        content.style.display = "block";
      }
    });
  });

How to Add This to Shopify YourYour Theme:

  1. Go to Shopify Admin → Online Store → Themes.
  2. Click "Customize" on your  theme.
  3. In the theme editor, go to "Theme settings" (bottom left).
  4. Scroll down and click "Custom CSS".

 5. Paste the above CSS code and save changes.

and put the js file in theme.js file and then test it will work

 

 

Syncora: Backup & Restore [Free] - Automated real-time store backup with one-click easy restore.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery, and more.
EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers.

DASCPA
Shopify Partner
91 0 23

brilliant thank you, where can i locate the JS file, thank you