How can I hide the logo list on mobile in the Dawn theme?

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

@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

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.