Click to See Complete Forum and Search --> : How do you fix the size of HOMEPAGE


ariba60
08-24-2004, 03:23 PM
Hi,

Does anyone know how to create a home page that is of fixed size(not full screen).

I want the home page to be the same size as a home page that is created using FLASH, about 1/3 size of the screen.

sharkey
08-24-2004, 03:50 PM
Well if i understand your question right use px to determine the width of your page which will result in a fixed width design.

ariba60
08-24-2004, 04:03 PM
Sorry, I am not an expert, what is PX?

sharkey
08-24-2004, 04:10 PM
Pixels mate a measuremeant. What are you using for the structure tables or pure css to hold the flash.

DaveSW
08-24-2004, 04:14 PM
ariba60, different people have different size screens. It will show up different sizes on those different screens because of the screen resolution - that is, the number of pixels wide that the screen is.

NogDog
08-24-2004, 04:30 PM
Try experimenting with the number of ems in the following body tag:
<body style="width: 40em;">
This will allow the page to scale to different user-selected font sizes, while maintaining the same proportions. If this gives the desrired effect, then look into creating a CSS style sheet and referencing it in the <head> element of each page, then you only have to change the value in one place if you decide to change it. (See the CSS forum here for more info.)