How do I create a small web site

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Newer sites today don't take up the whole screen; like a tabloid newspaper.
Can that be done in FP2003? I tried reducing page sizes in 'View' and that
gives the effect I want but when viewed in the browser I still get the whole
screen filled up.

Thanks for any help
 
Roadfiz said:
Newer sites today don't take up the whole screen; like a tabloid
newspaper. Can that be done in FP2003? I tried reducing page sizes in
'View' and that gives the effect I want but when viewed in the
browser I still get the whole screen filled up.

Thanks for any help

You could add this CSS into the <head> section , using Code or HTML view
<style type="text/css">
body {width:800px; height:600px}
</style>

Trouble is, I just added this to an existing HTML file and it didn't work !!
Why not is a mystery to me.
 
Use tables to do the layout - try the layout tables feature(s) - make the
table say 75% of the screen width. Which will then make them 75% of the
screen width no matter what resolution the user has set for their system.
 
Back
Top