Click to See Complete Forum and Search --> : publish settings help


ssettlemyre
10-26-2006, 08:57 AM
what publish settings (or other settings) are used to make a site behave like this one.

http://www.isa4d.com/

I like how it doesn't scale, scroll and just stays centered. (it's also a pretty cool site)

_Aerospace_Eng_
10-26-2006, 09:14 AM
They just made it 100% width and height.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Isa Kelmendi . Personal portfolio . Graphic designer</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
html, body {
margin:0;
padding:0;
border:0;
height:100%;
overflow:hidden;
}
</style>
</head>

<body>
<object type="application/x-shockwave-flash" data="index.swf" width="100%" height="100%">
<param name="movie" value="index.swf" />
</object>
</body>
</html>

ssettlemyre
10-26-2006, 09:21 AM
yeah, i tried and it doesn't work for me. My movie shrinks/grows with the window.