Jump to content

Wider page


Recommended Posts

I would like to add a new page width for desktop pc with higher resolution, to do that I can simply add a code like this:

@media (min-width: 1500px) {  .container {    max-width: 1470px; [spam-filter]

Other that this code already written into the global.css file:

@media (min-width: 1200px) {  .container {    max-width: 1170px; [spam-filter]
@media (min-width: 992px)
.container {
    max-width: 970px;
}
@media (min-width: 768px)
.container {
    max-width: 750px;
}

Or i should change something else?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...