PDA

View Full Version : web design hepl!



Apotheosis
05-09-2005, 10:43 AM
yes, i intentionally spelled help hepl.


I am designing a portfolio website, and have 1 simple question, for you web design gurus out there.

How do I create a fixed size window?

basically, I want all my pages to display a fixed size, ie 800x600, or something along those lines.

I have heard that this is simple java script. Please point me in the direction of said code.

Please don't argue the finer points of why I should or shouldn't set a fixed window width.

<3 to whoever answers this, if you are female.
If you are a guy, :cheers:

Back
05-09-2005, 11:45 AM
I use Dreamweaver to build my sites. The program has this feature. Below is an index file that will load whatever you want into a window without nav buttons, scroll bars, or resize handle.

--------------------------------------------------

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body onLoad="MM_openBrWindow('site.html','600x400','wid th=600,height=400')">
</body>
</html>

[Edited on 5-9-2005 by Backlash]

Showal
05-09-2005, 11:56 AM
Can you also put into dreamweaver one of those pop ups that keep loading a new one every time you close down one? Those are my favorites, especially when I have to reboot my computer to stop them.

The Cat In The Hat
05-09-2005, 04:16 PM
Best site Ive ever found for things like this is here.

http://www.dynamicdrive.com

Can find just about anything you want for HTML and I believe they have what you're looking for.

[Edited on 5-9-2005 by The Cat In The Hat]