• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do I force websites to be <800 wide?

1Cheap2Crazy

Golden Member
I'm using the proxomitron web filter. I also like my text a little larger then normal. Is there anything I can do to force ALL web pages to be only 750-800 pixels wide? I want it to fit on my 17" CRT. Would you call it wordwrap? I hate having to scroll left to right just to read. It even happens at this website 🙁 I'm using Firefox for my browser.

Thanks
 
The one thing you could try would be some crazy client-side css stuff, but I wouldn't know how to do that. Besides, it would probably completely screw up the page formatting.
 
You can too. Just use a browser like Mozilla or Opera that let's you do a user style sheet. Then write a rule like:

body {max-width: 750px !important;}

done and done.
 
Originally posted by: screw3d
Originally posted by: EeyoreX
You can too. Just use a browser like Mozilla or Opera that let's you do a user style sheet.
Yeah, and you could also use Internet Explorer.

\Dan

How does IE allow you to use user style sheets?

Tools / Internet Options / General / Accessibility / "Format documents using my stylesheet"
 
Originally posted by: dukdukgoos
You can too. Just use a browser like Mozilla or Opera that let's you do a user style sheet. Then write a rule like:

body {max-width: 750px !important;}

done and done.

Cool. That worked. Never new about user style sheets before.

For firefox in Linux you go and check out your home directory .pheonix/default/somethingweird.slt/chrome/

In there will be 2 sample css files. UserContent-example.css and UserChrome-example.css copy them and get rid of the -example in their name and keep them in the same directory. UserChrome.css will modify the looks/fonts/whatever for the the menus and bookmarks and menus and such for the browser itself and UserContent.css is for modifying the pages in the windows.

I put that stuff in the UserContent.css

See here for details
 
Back
Top