Custom page width?

Hi,

In the Global Settings my site width is currently set to 88% with a max width of 1440px.

I’m doing some experiments on a page where I want 90% and 1800px, and I was wondering is it was possible to overwrite the settings above with a setting only for that specific page? Is it possible with CSS?

Thanks in advance

Hey @Kobber,

Thanks for writing in!

In the Theme Options, we have this setting.

This will be applied to all screen sizes. Regretfully we do not have a feature or option that would apply on a specific target screen. You may have to do it with custom CSS code:

@media only screen and (max-width: 600px) {
  .max-Class {
    max-width: 900px;
  }
  
  .width-Class {
    width: 96%;
  }
}

The code above serves as an example code. Feel free to modify it when needed. Please note that custom coding is beyond the scope of our support. You must maintain any custom coding to ensure it will still work after any updates or does not create any issues or incompatibility in the future.

Be advised that custom CSS coding is beyond the scope of our support under our Support Policy. If you are unfamiliar with code and resolving potential conflicts, you may select our One service for further assistance.

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.