@strictlyonlinebiz It’s 800px for the sidebar and 1024px for the menu.
The content is wrapped with columns__md_8. And, the sidebar is wrapped with columns__md_4.
Here, “md” is for medium devices (800px).
@media screen and (min-width: 800px) {
.columns__md-4 {
width: 33.33%;
}
.columns__md-8 {
width: 66.66%;
}
}
So, if you want to make it for large devices (1010px), then you can switch it to “lg” classes like .columns__lg-4 and .columns__lg-8.
You can look at the style.css file if you are familiar with CSS. Or, you can just replace all occurrences of “800px” with something large like “1024px” in style.css. The theme uses a minified version of stlye.css which is “stlye.min.css”.
Also, do the changes using a child theme or a plugin so it doesn’t get lost with updates.
-
This reply was modified 4 years, 4 months ago by ScriptsTown.
-
This reply was modified 4 years, 4 months ago by ScriptsTown.
-
This reply was modified 4 years, 4 months ago by ScriptsTown.