setting options in html

liunx

Guest
Hi all,<br />
<br />
I'm after some info, is it possible to make a html page so when its viewed theres NO address bar or menu icons or menu in the Top left.<br />
<br />
All I want is the title bar and the close,minimize and maximize buttons.<br />
<br />
The reason is, its my submit news page and theres no need to launch it as a normal page so I want it to act like a popup (but not a popup so people who use blockers aren't affected).<br />
<br />
Cheers all :)<!--content-->Hi there Forcefire,<br />
<br />
This should do what you require.<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"#"onclick="window.open('your.html','name','top=0,left=0,width=800, height=600,toolbar=no,status=no,location=no,scrollbars=no');">new page</a><br />
<br />
Change 'your.html' 'name', 'top', 'left', 'width' and height to suit your needs...<br />
<br />
c:D:Dthead<!--content-->that will be stopped by a popup blocker.<br />
<br />
there isn't a popup that you can make that will not be stopped. you can try a dhtml popup but you lose all of the ***ntionality of it.<!--content-->But its not a popup.<br />
<br />
Its my submit news page, I just want it to be small and not bother with any extras.<br />
<br />
Heres the code I wrote:<br />
<br />
<html><br />
<head><br />
<title>Submit News</title><br />
</head><br />
<br />
<body bgcolor="#FFFFFF"><br />
<br />
<H1>Submit News</H1><br />
<br />
<form method="post" enctype="text/plain" action="mailto:[email protected]"><br />
<br />
<fieldset><legend>Personal Information:</legend><br />
<br />
<p>Your Name: <input type="text" name="visitor_name" size="30" /></p><br />
<br />
<p>User Name: <input type="text" name="visitor_username" size="30" /> <font color="red">*<br />
<br />
required</p></font><br />
<br />
<p>Valid Email: <input type="text" name="visitor_email" size="30" /> <font color="red"><br />
<br />
*required</p></font><br />
<br />
</fieldset><br />
<br />
<br />
<fieldset><legend>Article Category:</legend> <br />
<br />
<p><input type="radio" name="Category" value="General" />General</p><br />
<br />
<p><input type="radio" name="Category" value="Computer Hardware" />Computer Hardware</p><br />
<br />
<p><input type="radio" name="Category" value="Computer Software" />Computer Software</p><br />
<br />
<p><input type="radio" name="Category" value="Computer Games" />Computer Games</p><br />
<br />
<p><input type="radio" name="Category" value="P2P/RIAA" />P2P/RIAA</p><br />
<br />
<p><input type="radio" name="Category" value="Console News" />Console News</p><br />
<br />
<p><input type="radio" name="Category" value="Console Games" />Console Games</p><br />
<br />
<p><input type="radio" name="Category" value="Computer Security" />Computer Security</p><br />
<br />
</fieldset><br />
<br />
<fieldset><legend>Article:</legend><br />
<br><br />
<br />
Article Title: <br><br />
<input type="text" name="visitor_name" size="60" /><br />
<br />
<br><br><br />
<br />
Article Body:<br><br />
<textarea name="article" rows="10" cols="45" wrap="wrap">Insert Article Here......</<br />
<br />
textarea><br />
<br />
<br><br><br />
<br />
Related link:<br><br />
<input type="text" name="visitor_name" VALUE="http://" size="60" /><br />
<br />
</fieldset><br />
<br />
<br />
<p><input type="submit" value="Submit" /><br />
<br />
<input type="reset" value="Reset" /></p><br />
<br />
</form><br />
<br />
</BODY><br />
</HTML><!--content-->The only way to get a window without the address bar etc is to open a new window using javascript and then set the properties as coothead suggested. The problem with that method is that technically your window will be seen as a popup, even though that is not what you intended.<br />
<br />
I don't think there is any way around it.<!--content-->
 
Back
Top