How can i make my pages content a little bit far away from the menu bar?

So my problem is that my pages content is too close to the menu bar like shown in the screenshots

I want every text in the pages to be a little bit far away from the menu bar. THANKS!

Store Link:

https://www.animowrld.com/

Store Password:

123456

1 Like

hii, @ahmedvall
paste this code on top of the theme.scss file.

@media only screen and (min-width: 992px) {
main#MainContent {
    margin-top: 20px !important;
}
}

Thank You.

1 Like

@ahmedvall

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (max-width: 749px){
.main-content {padding-top: 65px !important;}
}

@media only screen and (min-width: 750px){
.main-content {padding-top: 75px !important;}
}

Hope this works.