Hi, did you try this?
.main-inner {border: none;}
Thanks @wallpaperman. I’ve tried now but doesn’t work.
It’s not a border on the sides and on the bottom, but shadow:
#page .container-inner {
background: #fff;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
Install plugin “Custom CSS & JS” and place this custom CSS code:
#page .container-inner {
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
To remove top border, check this code:
.page-title {
background: #fff;
position: relative;
padding-top: 18px;
padding-bottom: 17px;
border-bottom: 1px solid #eee;
color: #666;
font-size: 1em;
font-weight: 600;
line-height: 1.5rem;
}
place this code in “Custom CSS & JS”:
.page-title {
border-bottom: none !important;
}
Hope this will helps.
-
This reply was modified 2 years, 5 months ago by
Mr_Coder.
That is it @mr_coder . Works!
Helped me a lot.
Thanks!