we_universal

Change the width of windows? - we_universal

Change the width of windows?

by marinhaker » Tue Oct 15, 2019 9:58 am

Hi everyone, how can i change the width?
Untitled.jpg
marinhaker
Registered User
Posts: 3
Joined: Mon Oct 14, 2019 7:09 am

Re: Change the width of windows?

by marinhaker » Tue Oct 15, 2019 11:38 am

P.S.
and this width:
Untitled1.jpg
marinhaker
Registered User
Posts: 3
Joined: Mon Oct 14, 2019 7:09 am

Re: Change the width of windows?

by v12mike » Tue Oct 15, 2019 12:28 pm

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%;
}
v12mike
Registered User
Posts: 590
Joined: Thu Jul 09, 2015 5:03 pm

Re: Change the width of windows?

by marinhaker » Wed Oct 16, 2019 4:37 am

Thanks for the fast answer!
Đ¢his code changed only the left hand profile boxes.


How can I place text over the entire field?
Untitled2.jpg
marinhaker
Registered User
Posts: 3
Joined: Mon Oct 14, 2019 7:09 am

Re: Change the width of windows?

by v12mike » Wed Oct 16, 2019 5:55 am

In custom.css, add:

Code: Select all

.section-viewtopic .postbody .content {
    max-width: none;
}
v12mike
Registered User
Posts: 590
Joined: Thu Jul 09, 2015 5:03 pm