|
|||||||
![]() |
|
|
Thread Tools | Search this Thread |
|
#1
|
|||
|
|||
|
I need to know how to make you web page fit anyones display. I create my web pages using my display setting. Everything looks fine when I view the web page. My display is 1600 x 1200. But if someone views my page with displays other then 1600 x 1200 the page is really huge or off centered and what not.
Is there a way to auto size for what ever a persons display settings are? Thanks in Advance |
|
#2
|
||||
|
||||
|
Alot depends on the content.
Strategy One: Let the page's content flow into the space available to it. For container elements (table, div, p, frames, etc.) use percentage widths. For fonts, use relative sizes (large, medium, small, etc.) Sometimes, floating content, especially images, will help (style="float:left;" for example). Don't worry about things looking exactly the same at all resolutions. Strategy Two: Pick a resolution you think is the lowest target for your page. Confine and center everything to those dimensions. There will be alot of blank space left and right at higher resolutions but, if the page lends itself to this type of presentation it will look OK. Strategy Three: Wing it. Lay out the page at the prevailing resolution, currently 1024x768, in my opinion. View it in other resolutions, make adjustments so it at least looks OK at other resolutions without losing its essential appearance at the core resolution. You can combine absolute position with relative, fixed widths with percentage ones to achieve this effect on a case by case basis. Others will have different opinions and there are probably other approaches I am not covering. The unifying principal in all three of these approaches is: Don't insist on the page looking exactly the same at all resolutions. |
|
#3
|
|||
|
|||
|
Ok thanks I will convert my swf to fit 1024 x 768
Is there a way to specify the web page size? I have looked in the properties of the pages but I don't see any thing that has to do with size or resolutions. |
|
#4
|
|||||
|
|||||
|
Quote:
Quote:
Quote:
Before I continue, I'd like to point out that I have a severe dislike of Flash-based sites. They tend to be badly written and a right pain in the ass to use. I'm not likely to be objective... Quote:
Unless you are intentionally targeting a very specific audience, you don't understand the Web as a medium.Quote:
Mike |
|
#5
|
|||
|
|||
|
http://www.freewebs.com/crak/NewSite.html
Please comment on size and how to make it better. Understand it is still under construction |
|
#6
|
||||
|
||||
|
Looks Good! Only thing I would do, and I don't know enough about flash to say how or even know if it is possible, is center the content on the page, it is fine as it is, center would just be better.
|
|
#7
|
|||
|
|||
|
What resolution are you using?
|
|
#8
|
||||
|
||||
|
Generally 1024x768 but, I took a look at 800x600 and 1280x1024. All seemed fine. 800x600 was a 'perfect fit'. At the others, the content was all on the left, would be just a little nicer if it were centered at those resolutions but, only if it would also still be centered in a reduced viewport. Like you could change this:
Code:
<DIV style="position:absolute; align="center; top:40px; z-index:0"> Code:
<DIV style="position:relative; align="center; top:40px; z-index:0"> Last edited by jscheuer1; 04-01-2005 at 02:34 PM. |
|
#9
|
|||
|
|||
|
Quote:
HTML Code:
<div style="position: relative; text-align: center; top: 40px; z-index: 0;">
Mike |
|
#10
|
||||
|
||||
|
Oh, I missed that, darn this paid gig is messing up my recreational concentration. Or, since I still shamelessly mix the not too too old and the new:
Code:
<DIV align="center" style="position:relative;top:40px; z-index:0"> |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|