Log in

View Full Version : Boarder frames



k3v1n
01-13-2008, 06:52 PM
Does firefox allow boarder frames on html websites?

The reason I ask is because I added them to the site and they show up in IE but not in firefox so I assumed they didnt work in FF is this correct?

Also is the any way I can add a similar style of boarder frames using javascript as I have seen this done but they're movable so also if anyone can help me doo this but if possible lock them into place I would be grateful.

If you need to see the site I can upload it to my hosting and supply a link.

Thanks in advanced :)

ReMaX
01-14-2008, 03:34 PM
What the **** are border frames? embedded frames (work in nearly every browser)? Do you simply mean the question how to change the position of an element? That works via css like this:
Style (css):


#container { position:absolute;top:23px;left:23px; }

html:


<div id="container">asdf</div>

or...


<iframe id="container" src="page.html" name="Bildframe" width="300" height="200" align="left" scrolling="yes" marginheight="0" marginwidth="0">
<p>Your Browser cannot display embedded frames :(</p>
</iframe>


For the future: Try to post the concerning part of your code if you want an answer or give the link.
Check out this link for simple information about css & html if you can speak german or french: http://www.selfhtml.de/tutorial/html-css.php
(click the first link for german version)

k3v1n
01-14-2008, 04:09 PM
Sorry was told they were called frame boarders as they are on the sides of frames, I have found a site using the same kind of style with the boarders that I wish to add to my site as well.

Link is www.brid-cruise.co.uk (http://www.brid-cruise.co.uk)

PS. no, I'm english

Thanks