Im trying to remove the padding from left&right side by following custom css but doenst work
#main.site-main,.container, .site-content{
margin: 0;
padding: 0em;
}
Please advise how to solve this. The website is www.taro0329
Thank you
Im trying to remove the padding from left&right side by following custom css but doenst work
#main.site-main,.container, .site-content{
margin: 0;
padding: 0em;
}
Please advise how to solve this. The website is www.taro0329
Thank you
Instead of setting up margin/padding.
Try setting up max-width of full-container
a <div>
next to site-main
:
body.responsive.layout-full #page-wrapper .full-container {
max-width: 95%;
margin-left: auto;
margin-right: auto;
}
You can change max-width
to your desired percentage value.