hi, i have a problem, i have 6 iframe to use in a single page, and i want to use them with a list menu. does anyone knows how to do this? thanks
iframe
can u explain ur requirement properly? I didn't get u properly, but if i am not mistaken, maybe you want to use iframe's in <li>'s.
drop down list, is it possible?
Your question still doesn't make sense. What exactly are you trying to do with your six iframes? How would a list menu apply to them? Do you want to change the contents of your iframes based on what someone clicks from your list menu, perhaps?
sorry, gona try make more sense.
all the six iframes are like this:
<iframe src="url" height="316" width="212" scrolling="no" allowTransparency="yes" frameborder="0" marginheight="0" marginwidth="0"></iframe>
i am trying to do a dropdown menu using this iframe as code. so, when i select one of the choises, the iframe changes. the code of the iframes does not change.
do i make my self clear?
all the six iframes are like this:
<iframe src="url" height="316" width="212" scrolling="no" allowTransparency="yes" frameborder="0" marginheight="0" marginwidth="0"></iframe>
i am trying to do a dropdown menu using this iframe as code. so, when i select one of the choises, the iframe changes. the code of the iframes does not change.
do i make my self clear?
Yeah, you make yourself clear, but i kinda lost you. Sorry, i'm not that good at HTML just yet. I remember i found a website once though, that allowed me to create my own drop down menus (horizontal and vertical) but i dont remember what they were. It also showed the code so that you could learn how to make them yourself. Sorry that i can't recall the website. 
Sounds like a DHTML thing. The dropdown menu on my page is done in DHTML (not compatible in Firefox). Is that what you are talking about, or is it a dropdown list like on my estimates page that you want?
is like your dropdown list on the estimates pages, i can not change the way iframe is coded, i have a big problem in here. i start to go crazy...
Why you want use iframes? They do sucks.
Better use css (if you want achieve what i think, but im not sure). A link:
http://www.seoconsultants.com/css/menus/horizontal/
You can get something like menu on the top of link.
Better use css (if you want achieve what i think, but im not sure). A link:
http://www.seoconsultants.com/css/menus/horizontal/
You can get something like menu on the top of link.
Ok. This might be possible. So you want a dropdown list and when you choose something from it one iframe should go to a different page including the frames, is that right? You can add a name to the iframe, then you can use an "onmouseclick".
Where it says iframename replace that with the name you provided for a iframe.
| Code: |
| <select>
<option><a href="#" onmouseclick="document.iframename.src='FRAMEURL'">Op1</a></option> </select> |
Where it says iframename replace that with the name you provided for a iframe.
worked with css, just the way i wanted. thanks for the help everyone.
