hello dear csandreas1
many thanks for raising your questions. We here in the forum are willing to help you.
according this thread: https://www.ads-software.com/support/topic/change-content-and-sidebars-width/
you can follow below steps:
1. Login as admin and go on theme customizer Dashboard >> Apperance >> Customize or Click on Custimze link on top bar from front-end.
2. Then navigate Additional CSS and put below css into textarea then click on Save & Publish button.
.wrap { max-width: 1366px; }
and if you want to modify the percent of the sidebar and content?
you can do this: you can modify the percent of the sidebar and content.
just check below css code.
.wrap { max-width: 1366px; }
/*For Content*/
.has-sidebar:not(.error404) #primary {
width: 60%
}
/*For Sidebar*/
.has-sidebar #secondary {
width: 30%
}
/*Responsive*/
@media(max-width:768px) {
/*For Content*/
.has-sidebar:not(.error404) #primary {
width: 100%
}
/*For Sidebar*/
.has-sidebar #secondary {
width: 100%
}
}
hope this helps you a bit.
plz let us know how we can help you.
best regards apollo
??
-
This reply was modified 7 years ago by apolloman.