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:
Store Password:
123456
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:
Store Password:
123456
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.
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.