| 1. |
Solve : Resizing Web Page? |
|
Answer» Ok so I'm pretty new to web design but I'm starting to get the hang of it. I have a problem tho when I start making tables and pictures and links on my web page they look just fine work well and everything. Then I shrink the web page down everything is all squished TOGETHER and I mean really I'd like to know how you set up a web page so when you resize the page everything stays put on the screen?Try using Height and Width attributes, especially Width, in your table tags to make your tables a fixed width. Apparently, you aren't doing that, which is why your pages are shifting things AROUND. When you are using height and width, you should nearly always use percentage values, unless you have them set to about 800px or less (the minimum size of most browsers). Then I shrink the web page down everything is all squished together and I mean really I'd like to know how you set up a web page so when you resize the page everything stays put on the screen?You do mean resize your browser WINDOW, right? I was assuming that's what you mean. Quote from: kpac on September 12, 2008, 02:24:45 AM When you are using height and width, you should nearly always use percentage values, unless you have them set to about 800px or less (the minimum size of most browsers).I DISAGREE. To stop the shifting around of page elements when the browser window is shrunk, he needs to use fixed width, i.e., width in pixels, not percentage. That helped alot both of you thanksGlad you got it fixed. |
|