Hi everyone, how can i change the width?
Change the width of windows? - we_universal
-
- Registered User
- Posts: 3
- Joined: Mon Oct 14, 2019 7:09 am
Re: Change the width of windows?
P.S.
and this width:
and this width:
-
- Registered User
- Posts: 3
- Joined: Mon Oct 14, 2019 7:09 am
Re: Change the width of windows?
Try adding the following to the bottom of the custom.css file:
Code: Select all
/* Set the maximum forum width on wide screens
* To set the width of the borders at the sides of pages chage the width percentage
* To set a maximum width that the forum will not grow beyond, uncomment the following lines
* and set a value (1200px is a typical value), none is the default
*/
.inventea-wrapper,
.inventea-header,
.inventea-footer {
width:95%
max-width: none;
}
/*To change the relative width of the left hand profile boxes, uncomment and change the percentage (default 23%) */
.postprofile, .pm .postprofile, .search .postprofile {
width: 20%;
}
-
- Registered User
- Posts: 590
- Joined: Thu Jul 09, 2015 5:03 pm
Re: Change the width of windows?
Thanks for the fast answer!
Đ¢his code changed only the left hand profile boxes.
How can I place text over the entire field?
Đ¢his code changed only the left hand profile boxes.
How can I place text over the entire field?
-
- Registered User
- Posts: 3
- Joined: Mon Oct 14, 2019 7:09 am
Re: Change the width of windows?
In custom.css, add:
Code: Select all
.section-viewtopic .postbody .content {
max-width: none;
}
-
- Registered User
- Posts: 590
- Joined: Thu Jul 09, 2015 5:03 pm