• 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.

Resizing Web Pages

Hey guys, I'm having a problem with my page resizing for different resolutions. How can I lock a page, so it doesn't try to resize with different resolutions?
 
Umm, what?

You can't change the number of pixels on a screen if that's what you're asking

😕

How about a link to the page?
 
Originally posted by: amdfanboy
Originally posted by: rh71
use pixels instead of percentages for widths.

Only works with simple things sadly 🙁


<-- Still waiting for full CSS support 🙁:+
As long as things are in tables, it should be fine. As for CSS, I'm still waiting for it to be standardized, let alone supported fully.
 
options (change 700 to whatever width you prefer):
1. put your page contents in a <div> block, and set the width to a certain width using CSS
eg:
html page: <div id="pageContents"> ...... </div>
css file: #pageContents { display: block; width: 700px;}

2. put your page contents in <table> (not what i'd do)
eg: <table width="700" align="center"> ...... </table>
 
Originally posted by: rh71
Originally posted by: amdfanboy
Originally posted by: rh71
use pixels instead of percentages for widths.

Only works with simple things sadly 🙁


<-- Still waiting for full CSS support 🙁:+
As long as things are in tables, it should be fine. As for CSS, I'm still waiting for it to be standardized, let alone supported fully.
CSS1/2 IS standardized by W3C. The main problem here is crappy support by a browser used by over 90% of web surfers.
 
Originally posted by: rh71
Originally posted by: amdfanboy
Originally posted by: rh71
use pixels instead of percentages for widths.

Only works with simple things sadly 🙁


<-- Still waiting for full CSS support 🙁:+
As long as things are in tables, it should be fine. As for CSS, I'm still waiting for it to be standardized, let alone supported fully.

Divs > Tables when things work

I think stndn has the best idea
 
Back
Top