Site logo

Archived topic

Remove padding on Mobile menu

3 replies · Started by generatedcadcpr on December 14, 2017

Viewing posts 1–4 of 4

Hi guys, I've added some padding to the left side on a top menu, but want this padding to be gone on the mobile version. It's probably pretty simple, I'm just not familiar with CSS

Did you use CSS to add the padding?

If so, add it inside this media query:

@media (min-width: 769px) {
    /* CSS in here applies to desktop only */
}

Thank you, yes I did and that worked perfectly.

You're welcome :)

This archived topic is closed to new replies.