Website width

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
Hi all,

can anyone help as to what parts of the css file I need to change in order to make the website wider than what it already is.

Using version 4.20

Regards
4 years ago
It should depend on your theme.
4 years ago
mhsjaber wrote:
It should depend on your theme.


H,

Its the standard default clean theme.

Regards
4 years ago
Hi garrie007,

making the site wider could lead to possible layout issues. However, if you insist on doing it you can open the styles.css file located in your Default clean theme`s Content\css folder and add the following code to the bottom of it:

@media all and (min-width: 1001px) {
    .master-wrapper-content,
    .header,
    .header-menu,
    .footer-upper,
    .footer-lower {
        width: 90%; /* You can change this to whatever you find fitting */
    }
}


This will make your site wider for all screens above 1001px. And if at some point you want to revert the changes you would need to delete just these few lines instead of editing the whole file.

Hope this was helpful.

Best regards,
Valentin.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.