footer in a accordion (mobile) prestige theme

Hello,

i want to have the footer in a accordion (mobile) prestige theme

www.45keys.com

Can anyone help me ?

Hi @MS2333 ,

I am happy to help you.
Please follow the below instructions to achieve your desired results:

  1. Log in to your Shopify Admin panel.
  2. Go to Online Store > Theme > Edit code.
  3. Go to theme.liquid file and add the below code just before the ending tag.

  • Go to theme.css and paste the below code at the top of the file.
.footer__block--links summary.h6 {
  position: relative;
}

.footer__block--links summary.h6::after {
    content: '';
    position: absolute;
    right: -24px;
    padding: 2px;
    border-top: 1px solid;
    border-right: 1px solid;
    top: 50%;
    transform: translateY(-50%);
    rotate: 45deg;
}

details[open] summary.h6::after {
    rotate: 135deg;
    top: 20%;
}​