insideorkut.com

Are there iContact mailing lists for credit card companies?

Try iContact email marketing for free for 30 days. Click here to use coupon...

Get a free trial of iContact here. Click here for this special deal...
First off, Are there iContact mailing lists for credit card companies? Thanks for any comment. Another question I got... For drop down menu, does anyone know how to direct the link to your main page. I tried "target" but to my surprise, utter failure..

Help? =\..

Comments (9)

Of course! although you might wanna make sure and wait for someone else to confirm my answer as I am unsure. Better yet, why don't you contact the iContact guys because they can give you help better...

Comment #1

If you want your page to open in a new frame then the target attribute should work, could you show us some code please..

Comment #2

Hey joe2kiss!.

Well the only code I found for a drop down menu 'with frames' is....

<FORM.

ACTION="../cgi-bin/html/redirect.pl".

METHOD=POST onSubmit="return dropdown(this.gourl)".

TARGET=MAIN.

>.

<SELECT NAME="gourl">.

<OPTION VALUE="">Choose a Destination....

<OPTION VALUE="ddf.user.html">User Manuals.

<OPTION VALUE="ddf.Resume.html">Resume.

<OPTION VALUE="ddf.contact.html">Contacts.

<OPTION VALUE="ddf.lower.html">Home.

</SELECT>.

<INPUT TYPE=SUBMIT VALUE="Go">.

</FORM>.

(this one didn't make any sense to me... -_-).

Or.

<head>.

<script language=javascript>.

Function formHandler(form){.

Var URL = form.site.options[form.site.selectedIndex].value;.

Window.location.href = URL;.

}.

</script>.

</head>.

<body>.

<form name="form">.

<select name="site" size=1 onchange ="formHandler(this.form)">.

<option value="1.htm" target=main.html>1</option>.

<option value="2.htm" target=main.html>2</option>.

<option value="3.htm" target=main.html>3</option>.

<option value="4.htm" target=main.html>4</option>.

<option value="5.htm" target=main.html>5</option>.

</select>.

</form>.

</body>.

This. But that only led to the frame I was using. Meaning I uploaded another iframe that had the 'drop down menu' in it. So it only showed on THAt frame not the other frame I wanted to direct it to. ERrr if I'm making sense..

But this code could be entirely wrong or different from what I'm trying to attain. I don't even know if there is such a thing where it could lead to another frame because most forum people didn't know..

So yeah.. baffled =\..

Comment #3

That is because you set the location in the javascript. take the target out of the from and use htis instead.

Change this.

Window.location.href = URL;.

To be.

Parent.main.location.href = URL;.

Not sure if that will. I am not a javascript guy. but you need ot target your frame...

Comment #4

O.o.

You are GOD..

The only problem I was currently having right now was the background color and font color(bg color I fixed) but the font color just doesn't appear.. hmm...

Thanks a lot though..

Comment #5

If you want to change the colour of your font put this code in your <head> and </head> tags..

Comment #6

It didn't work :|.

<style type="text/css">.

Body {.

Cursor: sw-resize.

}.

<!.

* {.

Font-family: tahoma!important;.

Font-size: 11px;.

Font-color: #FFFFFF;.

Background-color: #000000;.

}.

A:link{color:#8B7355;text-decoration:none;curses:w-resize;font-weight: bold}.

A:active{color:#8B7355;text-decoration:none;cursor:w-resize;font-weight: bold}.

A:visited{color:#8B7355;text-decoration:none;cursor:w-resize;font-weight:bold}.

A:hover{color:#CD2626;text-decoration:none;cursor:w-resize;font-weight:bold}.

BODY{background=transparent;.

Scrollbar-face-color:#CC9966;.

Scrollbar-arrow-color:#CC9966;.

Scrollbar-track-color:#CC9966;.

Scrollbar-shadow-color:#000000;.

Scrollbar-highlight-color:#000000;.

Scrollbar-3dlight-color:#CC9966;.

Scrollbar-darkshadow-color:#CC9966;}-.

</style>.

<head>.

<script language=javascript>.

Function formHandler(form){.

Var URL = form.site.options[form.site.selectedIndex].value;.

Parent.main.location.href = URL;.

}.

</script>.

</head>.

<body>.

<form name="CLOCK WORKS;">.

<select name="site" size=1 onchange ="formHandler(this.form)">.

<option selected>xx. CLOCK WORKS .xx</option>.

<option value="stories.html" target=main.html>_______STORIES</option>.

<option value="articles.html" target=main.html>_______ARTICLES</option>.

<option value="poetry.html" target=main.html>_______POETRY</option>.

<option value="songs.html" target=main.html>_______SONGS</option>.

<option value="journals.html" target=main.html>_______JOURNALS</option>.

<option value="drawing.html" target=main.html>_______DRAWINGS</option>.

<option value="painting.html" target=main.html>_______PAINTINGS</option>.

<option value="photography.html" target=main.html>_______PHOTO'S</option>.

</select>.

</form>.

</body>.

Anything wrong?..

Comment #7

A lot wrong. for one you didn't use the color style Joe suggested, 2) you cannot use target in the option tag, 3) you cannot name your form like that, take the semi-colon out..

<!.

* {.

Font-family: tahoma!important;.

Font-size: 11px;.

Font-color: #FFFFFF;.

Background-color: #000000;.

}.

That is illegal, you cannot use * as the placeholder.

Curses:w-resize.

What is that? it is wrong too..

Comment #8

Ok. Well if I take out the "*" then nothing works and I didnt know it was illegal =o And I did try what joe asked me to do, but didnt work. At all. And who gives a damn about the minor error I did on cursors right now o.o that's not what I asked for..

So I dont know how this helped at all...

Comment #9

It helps a lot. if you have those errors it can stop what you want to happen. so yes, fix those and then do what you want..

Body {.

Color: #hex color for text.

Background-color: #hex color for background.

}.

That works and you didn't even do that...

Comment #10


This question was taken from a support group/message board and re-posted here so others can learn from it.