View Full Version : dotted/dashed frames!?!?!


stinkysocks
08-25-2003, 05:56 PM
Hello!!!!! I'd like to have the (whole) code to get a dotted frame...if someone could help I'd really apreciate it...Also, does anyone have the DIV tag?(To station something anywhere on the page)?

Also(this is not related to frames-well sorta) if I have a drrop down menu-target to the frame, but I would like to have ONE link that will open a new window(SO NOT IN THE FRAME) how woudl I do that? This is my code, I'd like to change the "Sign Guestbook" to a new window.

<script language="javascript">
function jump(form) {
var myindex=form.menu.selectedIndex
if (form.menu.options[myindex].value != "0")
{
window.open(form.menu.options[myindex].value,
target="yourframename");
}
}
//-->
</script>

THANKS!

MaGiCSuN
08-25-2003, 06:04 PM
1. style="border: 1px dotted #COLOR"

put the code above into the <frame> tag

2. you should make a seperate dropdownmenu for that one link. You can only use one target for the whole menu.

Love,
Mirna

stinkysocks
08-25-2003, 06:11 PM
Thank you very much!!!!!
Do I put the 1st Tag you gave me at a certain place?

MaGiCSuN
08-25-2003, 07:51 PM
Originally posted by MaGiCSuN
1. style="border: 1px dotted #COLOR"

put the code above into the <frame> tag

;) anywhere in the <frame> tag not the <frameset> tag

love,
Mirna