Solved

How to hide logo list in mobile?

akimhc
Excursionist
16 0 4

I added logo list to my Dawn theme, but I want to hide it in mobile mode. How can I do this?

(Also as a plus if you know how to make the image banner clickable please let me know!)

 

https://z6se6sglwz2x74ri-24641049.shopifypreview.com

 

Accepted Solution (1)

diego_ezfy
Shopify Partner
2935 562 883

This is an accepted solution.

@akimhc

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

@media (max-width: 749px){
    .shopify-section > style + header + [style]{
        display: none;
    }
}


You can use this guide to make the banner clickable.

Kind regards,
Diego

◦ Follow my blog & youtube for coding tutorials. Most questions in here are already answered there!
◦ Top #4 Shopify Expert, 24h reply. Click here to hire me.
Download copy/paste code snippets that can replace most apps.

View solution in original post

Replies 2 (2)

diego_ezfy
Shopify Partner
2935 562 883

This is an accepted solution.

@akimhc

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

@media (max-width: 749px){
    .shopify-section > style + header + [style]{
        display: none;
    }
}


You can use this guide to make the banner clickable.

Kind regards,
Diego

◦ Follow my blog & youtube for coding tutorials. Most questions in here are already answered there!
◦ Top #4 Shopify Expert, 24h reply. Click here to hire me.
Download copy/paste code snippets that can replace most apps.

AvadaCommerce
Shopify Partner
3879 839 953

Hi @akimhc ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/base.css->paste below code at the bottom of the file:

 

@media (max-width: 551px){
    .shopify-section > style + header + [style]{
        display: none;
    }
}

 

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

 

Best regards.

banned