Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Little HTML help please.
#1
Just a quick question; when I hover my cursor over an image, how can I get a little rollover message to drop down and appear?
Reply
#2
<IMG SRC="pic" HEIGHT=327 WIDTH=291 ALT="This is the rollover u wanted matt">
[Image: Sig2Vectorcopy.png]

Please vote for us, it takes you 5 seconds.
Reply
#3
Ah he beat me to it lol
Reply
#4
No, not that. I want something such as the "Links" button on the top of the forum, but with rollover and displaying only a message.
Reply
#5
ohh my html doesn't stretch beyond basics...
[Image: Sig2Vectorcopy.png]

Please vote for us, it takes you 5 seconds.
Reply
#6
IMO you would probably need Java... i think PHP allows that though. Want something sorta like the search button here? You click search and a box appears?
Reply
#7
first put this in your code in the head tags

Quote:<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function formHandler(form){
var URL=
document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
// End -->
</SCRIPT>

then place this where you want it to be
Quote:<center>
<select name="site" size=1 onChange="javascript:formHandler()">
<option value="">Go to....
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
<option value="<A href="http://www.YourPageHere.html">Name">http://www.YourPageHere.html">Name
</select>
</form>
</center>


--------------------------------------------------------------
Or you can try this one (Separate from the one above!!!)

Quote:
Copy the coding into the HEAD of your HTML document
Add the onLoad event handler into the BODY tag
Put the last coding into the BODY of your HTML document

Paste this code into the HEAD tags of your HTML document

<HEAD>


<script language="JavaScript">

// big() makes selected layer longer (height property)
function big(lyr) {
document.all[lyr].style.height='180px'; }
/* small() makes selected layer shorter (height property)*/
function small(lyr) {
document.all[lyr].style.height='32px';
}
/* start() makes all layers short to start with (height property)*/
function start() {
document.all.Layer1.style.height='32px';
document.all.Layer2.style.height='32px';
document.all.Layer3.style.height='32px'; }
//-- !>
</script>
</HEAD>

[[[[[ Put this to your body tag ]]]]]

onLoad="start()"

[[[[[ Put this where you want the drop down ]]]]]

<div id="Layer1" style="position:absolute; width:155px; height:180px; z-index:1; left: 74px; top: 38px; background-color: #FFFFCC; layer-background-color: #FFFFCC; border: 1px none #000000; overflow: hidden" onMouseOver="big('Layer1')"; onMouseOut="small('Layer1')">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif">
<a href="menu1.html">Menu 1</a>
<br>
<br>
<a href="link1.html">Link 1</a><br>
<br>
<a href="link2.html">Link 2</a><br>
<br>
<a href="link3.html">Link 3</a><br>
<br>
<a href="link4.html">Link 4</a></font></div>
</div>

[Image: Untitled-1-copy.jpg]
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  HTML or XML tree_frog 4 295 08-21-2008, 03:48 AM
Last Post: Determinado
  Html tyrot 2 355 04-25-2008, 07:50 PM
Last Post: blueflame246
  Basic guide to some HTML. Koolaid_dude 0 198 10-12-2005, 11:02 AM
Last Post: Koolaid_dude
  HTML Help! Hamel 4 997 01-14-2005, 12:04 PM
Last Post: nujabes
  I need help on HTML / Javascript....plz Hurly91 7 426 01-11-2005, 06:03 AM
Last Post: CheshireCat
  Html Website Hosting Hamel 2 342 01-02-2005, 07:14 AM
Last Post: Karant
  Html Hosting:chesire Come Hamel 4 292 01-01-2005, 01:33 PM
Last Post: Karant
  about HTML skidude 2 328 09-28-2004, 01:15 AM
Last Post: skidude

Forum Jump:


Users browsing this thread: 1 Guest(s)