MyBB Community Forums

Full Version: Twilight Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the width of the forum theme, to fill the whole screen? I don't like the empty space on the sides.

[Image: ei4m84.jpg]
Try adding this to the top of the css:
* { margin: 0; }

EDIT: Sorry, was looking at wrong thing. URL?
(2011-09-15, 09:43 PM)Jason L. Wrote: [ -> ]Try adding this to the top of the css:
* { margin: 0; }

EDIT: Sorry, was looking at wrong thing. URL?

the URL is www.tortoiseinfo.org
global.css

find: .wrapper {

Replace
width: 85%;

With
width: 100%;
(2011-09-15, 10:41 PM)Jason L. Wrote: [ -> ]global.css

find: .wrapper {

Replace
width: 85%;

With
width: 100%;

I did exactly that and it hasn't changed. Take a look at it again.
(2011-09-15, 11:59 PM)soyusae Wrote: [ -> ]
(2011-09-15, 10:41 PM)Jason L. Wrote: [ -> ]global.css

find: .wrapper {

Replace
width: 85%;

With
width: 100%;

I did exactly that and it hasn't changed. Take a look at it again.

In your css there is no change.

Add this to the bottom to make it easier and overwrite the current rule:

.wrapper { width: 100% !important; }
(2011-09-16, 12:02 AM)Jason L. Wrote: [ -> ]
(2011-09-15, 11:59 PM)soyusae Wrote: [ -> ]
(2011-09-15, 10:41 PM)Jason L. Wrote: [ -> ]global.css

find: .wrapper {

Replace
width: 85%;

With
width: 100%;

I did exactly that and it hasn't changed. Take a look at it again.

In your css there is no change.

Add this to the bottom to make it easier and overwrite the current rule:

.wrapper { width: 100% !important; }

I must be doing something wrong here.

AdminCP>Templates & Style> Twilight Theme> Global.css>Edit Style Sheet: Advanced mode>

I added the above and still...nothing.
(2011-09-16, 12:10 AM)soyusae Wrote: [ -> ]
(2011-09-16, 12:02 AM)Jason L. Wrote: [ -> ]
(2011-09-15, 11:59 PM)soyusae Wrote: [ -> ]
(2011-09-15, 10:41 PM)Jason L. Wrote: [ -> ]global.css

find: .wrapper {

Replace
width: 85%;

With
width: 100%;

I did exactly that and it hasn't changed. Take a look at it again.

In your css there is no change.

Add this to the bottom to make it easier and overwrite the current rule:

.wrapper { width: 100% !important; }

I must be doing something wrong here.

AdminCP>Templates & Style> Twilight Theme> Global.css>Edit Style Sheet: Advanced mode>

I added the above and still...nothing.

I checked through your CSS and it is not there. Are you running cloudflare?
Scratch that...the problem I have is that i'm on my work computer and it won't allow me to clear the cache on the server so it looks all the same to me. But I went on someone else's computer and I can see the change after all.
Let me try this when I get home instead.
(2011-09-16, 12:15 AM)soyusae Wrote: [ -> ]Scratch that...the problem I have is that i'm on my work computer and it won't allow me to clear the cache on the server so it looks all the same to me. But I went on someone else's computer and I can see the change after all.
Let me try this when I get home instead.

Ah, yes. I cleared my cache and it works now. Glad I could help.