PDA

View Full Version : How do you remove the Icons/menu


Fullwebservice
03-23-2003, 01:42 PM
you know the top Icons
like
Back|Stop|Refresh|Home|Search|Favorute etc

i want to remove these and the address bar from a page i am making,

I want to have a link to this page it just going to be showing an Image ,

I want to have all the things above a page removed. Even the Menu's like |File|Edit|View..etc


can this be done and if it can whats the code?


Thanks
David

Mr J
03-23-2003, 02:17 PM
Try the following


<a href="#null" onclick="window.open('yourpage.htm','win1','toolbar=no, location=no, directories=no, status=yes, menubar=no')">CLICK</a>


Make sure it is all one line as sometimes thie forum splits it up

Fullwebservice
03-23-2003, 03:07 PM
thanks thats great, works great,

1 more thing is there a way to make the popup window a certen size, ? like

300 Width x 300 Height

redhead
03-23-2003, 03:58 PM
'toolbar=no, location=no, directories=no, status=yes, menubar=no, width=300, height=300,'

just add it in with all the other settings...