Hi abcorp,
1/If you want to remove the leading sidebar, you can use the following CSS code:
@media (min-width: 992px) {
.leading-main {
border-right: 0;
width: 100%;
}
}
2/ To make the full-width site, you can use the following CSS code:
@media (min-width: 768px) {
.container {
width: 680px;
}
}
@media (min-width: 992px) {
.container {
width: 980px;
}
}
@media (min-width: 1200px) {
.container {
width: 1080px;
}
}