Question:
Is there a way to use Wix Studio and the templates on wide screens by limiting the maximum width? So far, every template expands infinitely.
Product:
Wix Studio
What are you trying to achieve:
The breakpoints (Desktop/Tablet/Mobile): No chance
Advanced Size Control: Can’t change width, only height
Containers: Does work somehow, but that can’t be the solution and is cumbersome
Custom-CSS: Does work, but again: Seriously?
Additional information:
All I want in Wix Studio is something working like this in terms of max. width: Boxes Layout Website Template | WIX
I use containers. Unfortunatelt sections cant be set to max width by default they are a max-width element.
also check here to see if thi ssolution can help
Man I feel so bad that I forget to reply to this post sorry for a 20days delayed reply but I really forgot it…
Here is the solution (don’t forget to mark it as a solution if it works) add this CSS code to your global.css file:
@media screen and (min-width: 1441px) {
.section {
max-width: 1440px;
left: calc((100vw - 1440px) / 2);
}
}
This CSS will effect every section you’ve added in your site so it will limit the section width. I have added one more thing (left) to center the sect…
pamela
July 30, 2024, 3:11pm
3
@Raven_Sterling Hey! Here is something that may be of help to you, max-width has now begun rolling out! It allows you to have that control over elements as the screen gets larger. See the announcement here