Site logo

Archived topic

Margin adjustment

5 replies · Started by Matthieu on March 11, 2021

Viewing posts 1–6 of 6

Hello

Is it possible to get the same margin on the left and right of the site? We can see that the right margin of the page is greater than that of the left side menu.

Thank you 😀

Hi there,

the site has this Additional CSS:

@media (min-width: 1000px) {
  body {
      margin-left: 100px;
  }
}

you can change that to:

@media (min-width: 1000px) {
  body {
      margin-left: 200px;
      margin-right: 200px;
  }
}

Hello thank you for your answer, unfortunately this is not the expected result. I may have explained myself badly.

The left margin is currently 20px while the left margin is 40px. I would like to have a 40px margin on the left in the menu.

Can you not adjust the padding in the Customizer > Layout > Header ?

It's perfect, thanks ! 😀

Glad to hear that!

This archived topic is closed to new replies.