cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic page view per user

Oldjim
Resting Legend
Posts: 38,460
Thanks: 787
Fixes: 63
Registered: ‎15-06-2007

Re: Dynamic page view per user

I just switched my colour temperature on my monitor to 6500K and the nice soft background makes it much easier on the eye. However that is no good for anything else so back to 9300K.
I really don't like this colour scheme I'm afraid.
Kelly
Hero
Posts: 5,497
Thanks: 380
Fixes: 9
Registered: ‎04-04-2007

Re: Dynamic page view per user

We are working on alt stylesheets so that you can choose how you want it to look. 
Kelly Dorset
Ex-Broadband Service Manager
Oldjim
Resting Legend
Posts: 38,460
Thanks: 787
Fixes: 63
Registered: ‎15-06-2007

Re: Dynamic page view per user

Great - thanks.
Probably too difficult but how about making the centre column width dynamic so it fills the screen on a higher resolution and also works well with a reduced size window - if you want to compare have a look at the PUG forums which work well in this regard
Tamlyn
Grafter
Posts: 268
Registered: ‎11-04-2007

Re: Dynamic page view per user

Quote from: Kelly
We are working on alt stylesheets so that you can choose how you want it to look. 

In the meantime, create a user stylesheet containing the following:

#header-wrap + #content,
#header-wrap + #content .tborder {
  width: 100%;
}

bingo! (note: might not work in IE)
Oldjim
Resting Legend
Posts: 38,460
Thanks: 787
Fixes: 63
Registered: ‎15-06-2007

Re: Dynamic page view per user

Finally managed to get it to work.
Working code is
Quote
#header-wrap + #content,
#header-wrap + #content .tborder {
  width: 100% ! important;
}
Oldjim
Resting Legend
Posts: 38,460
Thanks: 787
Fixes: 63
Registered: ‎15-06-2007

Re: Dynamic page view per user

I know that this is a very old thread but I used the fix in the post above very successfully but I have noticed an odd effect.
It only works when I am logged in - any idea why that should be
Tamlyn
Grafter
Posts: 268
Registered: ‎11-04-2007

Re: Dynamic page view per user

Quote from: Oldjim
It only works when I am logged in - any idea why that should be

it seems the structure of the page changes slightly when logged out. Try this updated css rule:
#header-wrap + #content,
#header-wrap + #content + .tborder,
#header-wrap + #content .tborder {
  width: 100% !important;
}