Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > VodaHost Web Hosting Support > General Support Issues

Notices

General Support Issues Answers to general questions and help with common problems. For help with a specific issue, post to one of the forums below.

Reply
 
LinkBack Thread Tools
  #1  
Old 09-11-2006, 04:33 AM
Major
 
Join Date: Mar 2006
Posts: 439
Default HTML Code for smaller windows

Ok, does anyone know the HTML code to have a certain page open in a desired highth and width even if the link is off site:

Like here is the page: http://www.metalinsanity.com/metallives.html

I have a link to it that opens it in the desired highth and width but as you can see with the above link it opens in full...

Thanx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 09-11-2006, 04:39 AM
Vasili's Avatar
The Generalissimo
 
Join Date: Mar 2006
Posts: 10,332
Question Re: HTML Code for smaller windows

Been waiting for that one myself....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 09-11-2006, 04:42 AM
Major
 
Join Date: Mar 2006
Posts: 439
Default Re: HTML Code for smaller windows

Quote:
Originally Posted by Vasili
Been waiting for that one myself....
I'm also in a conversation with an expert via email on the very subject, so If I get an answer I'll post it here....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 09-11-2006, 04:52 AM
Vasili's Avatar
The Generalissimo
 
Join Date: Mar 2006
Posts: 10,332
Default Re: HTML Code for smaller windows

Thanks! I'm probably not the only one that has scoured the Forum looking to no avail. (Deathly afraid by HotScripts.com....too many bugs and viruses)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 09-11-2006, 05:16 AM
Sergeant First Class
 
Join Date: Jan 2006
Posts: 57
Default Re: HTML Code for smaller windows

This is a long shot but could you find someones site that has a window opening in the size you want and, veiw the code?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old 09-11-2006, 05:20 AM
Major
 
Join Date: Mar 2006
Posts: 439
Default Re: HTML Code for smaller windows

Does anyone understand this? and translate to BV terms


Configuring The Window

Now we get to the commands I used on this page to get the little window effect. This is exactly what I have:



<SCRIPT LANGUAGE="javascript">
<!--
window.open ('titlepage.html', 'newwindow', config='height=100,
width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no,
location=no, directories=no, status=no')
-->
</SCRIPT>

(Get all on one line...no spaces)


Here's What's Happening
  • <SCRIPT LANGUAGE="javascript"> starts the JavaScript.
  • window.open is the JS command to open a new browser window.
  • 'titlepage.html' is the name of the page that will fill the window.
  • 'newwindow' is the name of the window. This you need. We are going to use commands intended to alter the window the script is opening. In order for the JavaScript to know what item it is dealing with, the item has to have a name. So we give it one. I went with newwindow. But it could have just as easily been zork, or woohaa, or raspberry.
  • config= denotes that what follows configures the window. (This command really isn't required, but it's a good idea to use just to keep things straight)
  • height=100 denotes the height of the window in pixels.
  • width=400 denotes the width of the window in pixels.
  • toolbar=no denotes if there will be a toolbar on the newly opened window. Set this to yes if you want one - no if you don't.
    The toolbar is the line of buttons at the top of the browser window that contains the BACK, FORWARD, STOP, RELOAD, etc.
  • menubar=no denotes if there will be a menubar. Set this to yes if you want one - no if you don't.
    The menubar is the line of items above labeled FILE, EDIT, VIEW, GO, etc.
  • scrollbars=no denotes if there will be scrollbars or not. Ditto with the yes and no deal. I wouldn't make a new window that would need scrollbars anyway. I think it kills the effect.
  • resizable=no denotes if the user can change the size of the window by dragging or not.
  • location=no denotes if there will be a location bar on the newly opened window. Use yes and no again.
    The location bar is the space at the top of the browser window where the page URL is displayed.
  • directories=no denotes if there will be a directories bar on the new window. Use yes and no.
    This is the bar at the top of the browser window that has the bookmarks and such.
  • status=no denotes if there will be a status bar. Use yes and no.
    The status bar is the area at the very bottom of the browser screen that tells you "Document Done".
  • </SCRIPT> ends the whole deal.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old 09-11-2006, 05:22 AM
Vasili's Avatar
The Generalissimo
 
Join Date: Mar 2006
Posts: 10,332
Default Re: HTML Code for smaller windows

Quote:
Originally Posted by tenhats
This is a long shot but could you find someones site that has a window opening in the size you want and, veiw the code?
I could never make head or tails if it was in Dream, Fusion, or Flash, and what the actual "limiters" were to even begin tinkering....personally....
__________________
_____________________________________________________ .*.* . .* . * . * .*
My Websites... VodaHost Support....Soholaunch Support....osCommerce Support
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old 09-11-2006, 05:32 AM
Major
 
Join Date: Mar 2006
Posts: 439
Default Re: HTML Code for smaller windows

I believe this is the code I just dont know where to put it:

<SCRIPT LANGUAGE="javascript">
<!--
window.open ('titlepage.html', 'newwindow', config='height=100,
width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no,
location=no, directories=no, status=no')
-->
</SCRIPT>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old 09-11-2006, 05:46 AM
Vasili's Avatar
The Generalissimo
 
Join Date: Mar 2006
Posts: 10,332
Thumbs up Re: HTML Code for smaller windows

Thanks for sharing.
I'll tinker a bit, and post when I figure it out (unless you beat me to it! LOL).
__________________
_____________________________________________________ .*.* . .* . * . * .*
My Websites... VodaHost Support....Soholaunch Support....osCommerce Support
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old 09-11-2006, 05:50 AM
Major
 
Join Date: Mar 2006
Posts: 439
Default Re: HTML Code for smaller windows

I've tried several things..

right click in BV like you're going to properties and click on Page HTML and pasted the cade in there but I get no response only errors on the page...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old 09-11-2006, 05:53 AM
Vasili's Avatar
The Generalissimo
 
Join Date: Mar 2006
Posts: 10,332
Default Re: HTML Code for smaller windows

Right...and HTML boxes?
Also looking into a "Form" of types....with "action" specified (sounds stupid, I know, but fiddling around).
__________________
_____________________________________________________ .*.* . .* . * . * .*
My Websites... VodaHost Support....Soholaunch Support....osCommerce Support
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old 09-11-2006, 05:55 AM
Major
 
Join Date: Mar 2006
Posts: 439
Default Re: HTML Code for smaller windows

I havent tried an HTML Box yet... Im still with the Page HTML properties
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +1. The time now is 12:35 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176