Click to See Complete Forum and Search --> : help...is it possible


mrjohnbridge
06-24-2007, 05:37 PM
well i have an idea of what i want but im not sure if i will explain it well enough so here goes

i want a list of words and when the cursor goes over them is it possible for a set of txt to appear on (for arguements sake) on the other side of the page.
that then gives a description of the word in the list.

i dont want it to be a click link,just a hover.if its possible


Thanks guys

John

TheSkyOrBust
06-24-2007, 06:46 PM
Do you mean like a tooltip?

Major Payne
06-25-2007, 01:17 AM
This is a good one:

DHTML Tooltip (http://www.dynamicdrive.com/dynamicindex5/dhtmltooltip.htm)

Ron

mrjohnbridge
06-25-2007, 01:22 AM
thats what i mean..thank you very much.
i would never have found that.

lets start giving this code a go then,its bound to go wrong to start with

Major Payne
06-25-2007, 01:50 AM
You're welcome. It works well with text links and regular text. Haven't use an image yet.

Ron

buntine
06-25-2007, 03:24 AM
Yes, definately possible (as mentioned above). You will need to employ the use of DHTML (Dynamic HTML - A combined usage of JavaScript, DOM and CSS).

Make sure you direct any JavaScript/DHTML specific questions to the appropriate forums for the best responses. :) I can move this thread there if necessary.

Cheers,
Andrew

Major Payne
06-25-2007, 04:01 AM
Well, the DHTML Tooltip has very little problems in its use and mods to it is to set up link/text paths/names. I didn't see much in JS to mess with. Something like this could be spread out over JS, DHTML and HTML. LOL We'll see what or if any problems crop up.

Ron

mrjohnbridge
06-25-2007, 06:57 AM
thanks for all your help guys....i know all the basics of html but im trying out new things and "expanding" my knoledge you might say...

as for when the txt appears can i position it anywhere on the page like you would when posistioning your div or even the contents in it?

Major Payne
06-25-2007, 07:27 AM
All the instructions for changing background color, tooltip positioning and more comes with the download. Just read carefully and keep the original as is and copy the original to a page to experiment with.

Ron

mrjohnbridge
06-27-2007, 11:57 AM
wow this is hard,

i put the codes in what i thought was the correct place and it cut my slices up and changed there positioning(so made the background show through)

further more i cant seem to get the tooltip part to function on the links i want it too.as in the preset slice i made for it.instead it has created its own...i did use the example but when i tried to modify it,it all went wrong.

Im stuck

would anybody be willing to help if i send them my HTML.it would be much appreciated

thanks
john

Major Payne
06-27-2007, 12:26 PM
Either post a url if it's online or send it to me if you wish.

Ron

mrjohnbridge
06-27-2007, 01:26 PM
here is my coding so far


<HTML>
<HEAD>

<style type="text/css">

#dhtmltooltip{
position: absolute;
width: 150px;
border: 2px solid black;
padding: 2px;
background-color: lightyellow;
visibility: hidden;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}

</style>


<TITLE>MYSPACE PAGE IN PROGRESS</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>

<div id="dhtmltooltip"></div>

<script type="text/javascript">

/***********************************************
* Cool DHTML tooltip script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thecolor, thewidth){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20

var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

document.onmousemove=positiontip

</script>

<!-- ImageReady Slices (MYSPACE PAGE IN PROGRESS.psd) -->
<TABLE WIDTH=983 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD COLSPAN=11>
<IMG SRC="images/popcorn_01.jpg" WIDTH=983 HEIGHT=17 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=6>
<IMG SRC="images/popcorn_02.jpg" WIDTH=740 HEIGHT=201 ALT=""></TD>
<TD COLSPAN=4>
<A HREF="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewAlbums&friendID=25763964">
<IMG SRC="images/photos.jpg" WIDTH=191 HEIGHT=201 BORDER=0 ALT=""></A></TD>
<TD ROWSPAN=5>
<IMG SRC="images/popcorn_04.jpg" WIDTH=52 HEIGHT=526 ALT=""></TD>
</TR>
<TR>
<TD ROWSPAN=4>
<IMG SRC="images/popcorn_05.jpg" WIDTH=390 HEIGHT=325 ALT=""></TD>
<TD COLSPAN=2>
<A HREF="http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&friendID=25763964">
<IMG SRC="images/comment-me.jpg" WIDTH=137 HEIGHT=33 BORDER=0 ALT=""></A></TD>
<TD COLSPAN=2>
<A HREF="http://comment.myspace.com/index.cfm?fuseaction=user.viewComments&friendID=25763964">
<IMG SRC="images/view-comments.jpg" WIDTH=170 HEIGHT=33 BORDER=0 ALT=""></A></TD>
<TD COLSPAN=3>
<A HREF="http://messaging.myspace.com/index.cfm?fuseaction=mail.message&friendID=25763964">
<IMG SRC="images/message-me.jpg" WIDTH=136 HEIGHT=33 BORDER=0 ALT=""></A></TD>
<TD COLSPAN=2>
<A HREF="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=25763964">
<IMG SRC="images/add-me.jpg" WIDTH=98 HEIGHT=33 BORDER=0 ALT=""></A></TD>
</TR>
<TR>
<TD COLSPAN=9>
<IMG SRC="images/popcorn_10.jpg" WIDTH=541 HEIGHT=52 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/about-me.jpg" WIDTH=116 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="images/interests.jpg" WIDTH=117 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=3>
<IMG SRC="images/golf.jpg" WIDTH=176 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="images/the-wife.jpg" WIDTH=105 HEIGHT=24 ALT=""></TD>
<TD ROWSPAN=2>
<IMG SRC="images/popcorn_15.jpg" WIDTH=27 HEIGHT=240 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=8>
<IMG SRC="images/popcorn_16.jpg" WIDTH=514 HEIGHT=216 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=390 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=116 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=21 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=96 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=74 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=43 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=59 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=34 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=71 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=27 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=52 HEIGHT=1 ALT=""></TD>
</TR>
</TABLE>
<!-- End ImageReady Slices -->
</BODY>
</HTML>

.................................................................................................... ............
Now im not sure where to put this link

onMouseover="ddrivetip('JavaScriptKit.com JavaScript tutorials','yellow', 300)";
onMouseout="hideddrivetip()"

as i want to use it in the following sections

<TR>
<TD>
<IMG SRC="images/about-me.jpg" WIDTH=116 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="images/interests.jpg" WIDTH=117 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=3>
<IMG SRC="images/golf.jpg" WIDTH=176 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="images/the-wife.jpg" WIDTH=105 HEIGHT=24 ALT=""></TD>
<TD ROWSPAN=2>
<IMG SRC="images/popcorn_15.jpg" WIDTH=27 HEIGHT=240 ALT=""></TD>
</TR>

i know how to add input to the code,as in the words i want to show when you hover,im just not sure how to structure it into the areas i waqnt it in.
im not really sure how to adjust the positionand size of the box change the font and get rid of the drop shadow idealy i want the boxto appear in the gap at the bottom of the page and spread out right across the wasted space,

if you understand what i mean

mrjohnbridge
06-27-2007, 01:28 PM
i know its a myspace page i have created but it was one i was making a while ago and am using it to test this toolpip funtion out :D

hope you can help

thanks guys

Major Payne
06-27-2007, 01:37 PM
I'll take at look at code, but I'm sure you know this will not work on MySpace.

Ron

mrjohnbridge
06-27-2007, 01:40 PM
no i know it wont...i just used the page i designed as an exapmle and a means to learn how to do this feature....as soon as i know and undertstand how to use it ill incorporate it into my golf restoration site i have,but ill take some time with it and get it right.

i appreciate this Major Payne :D

Major Payne
06-27-2007, 02:09 PM
Then you wont mind if I get rid of the MySpace stuff?? Also, do you have your images hosted somewhere as it would be nice to have the page as it should be. If your images are online, just send me the full path to where your images are stored.

Ron

Major Payne
06-27-2007, 03:19 PM
Can't help you without images for you page, but this is how you do your links with the DHTML Mouseover:

<a href="http://PayneLessDesigns.com" onMouseover="ddrivetip('Visit PayneLessDesigns.com', '#000000', 250)"; onMouseout="hideddrivetip()"><strong>Web Site Designs</strong></a>

<br><br><div onMouseover="ddrivetip('This DIV has a tip!', '#c0c0c0')"; onMouseout="hideddrivetip()"><b>Mouse over me and see the action!</strong></div>

<br><a href="http://HSTreasures.com" onMouseover="ddrivetip('HSTreasures.com\'s Site', '#00ffff', 250)"; onMouseout="hideddrivetip()"><strong>Homeschooling/Antique Books</strong></a>


Just change to suit your needs for each link you have.

Ron

mrjohnbridge
06-27-2007, 05:00 PM
<HTML>
<HEAD>

<style type="text/css">

#dhtmltooltip{
position: absolute;
width: 150px;
border: 2px solid black;
padding: 2px;
background-color: lightyellow;
visibility: hidden;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
filter: progidXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}

</style>


<TITLE>MYSPACE PAGE IN PROGRESS</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>

<div id="dhtmltooltip"></div>

<script type="text/javascript">

/***********************************************
* Cool DHTML tooltip script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thecolor, thewidth){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20

var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

document.onmousemove=positiontip

</script>


<!-- ImageReady Slices (MYSPACE PAGE IN PROGRESS.psd) -->
<TABLE WIDTH=983 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD COLSPAN=11>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/popcorn_01.jpg" WIDTH=983 HEIGHT=17 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=6>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/popcorn_02.jpg" WIDTH=740 HEIGHT=201 ALT=""></TD>
<TD COLSPAN=4>
<A HREF="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewAlbums&friendID=25763964">
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/photos.jpg" WIDTH=191 HEIGHT=201 BORDER=0 ALT=""></A></TD>
<TD ROWSPAN=5>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/popcorn_04.jpg" WIDTH=52 HEIGHT=526 ALT=""></TD>
</TR>
<TR>
<TD ROWSPAN=4>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/popcorn_05.jpg" WIDTH=390 HEIGHT=325 ALT=""></TD>
<TD COLSPAN=2>
<A HREF="http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&friendID=25763964">
<IMG SRC="http://i73.photobucket.com/albums/i236/fasion/popcorn%20profile/comment-me-1.jpg" WIDTH=137 HEIGHT=33 BORDER=0 ALT=""></A></TD>
<TD COLSPAN=2>
<A HREF="http://comment.myspace.com/index.cfm?fuseaction=user.viewComments&friendID=25763964">
<IMG SRC="http://i73.photobucket.com/albums/i236/fasion/popcorn%20profile/view-comments-1.jpg" WIDTH=170 HEIGHT=33 BORDER=0 ALT=""></A></TD>
<TD COLSPAN=3>
<A HREF="http://messaging.myspace.com/index.cfm?fuseaction=mail.message&friendID=25763964">
<IMG SRC="http://i73.photobucket.com/albums/i236/fasion/popcorn%20profile/message-me-1.jpg" WIDTH=136 HEIGHT=33 BORDER=0 ALT=""></A></TD>
<TD COLSPAN=2>
<A HREF="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=25763964">
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/add-me.jpg" WIDTH=98 HEIGHT=33 BORDER=0 ALT=""></A></TD>
</TR>
<TR>
<TD COLSPAN=9>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/popcorn_10.jpg" WIDTH=541 HEIGHT=52 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/about-me.jpg" WIDTH=116 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/interests.jpg" WIDTH=117 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=3>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/golf.jpg" WIDTH=176 HEIGHT=24 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/the-wife.jpg" WIDTH=105 HEIGHT=24 ALT=""></TD>
<TD ROWSPAN=2>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/popcorn_15.jpg" WIDTH=27 HEIGHT=240 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=8>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/popcorn_16.jpg" WIDTH=514 HEIGHT=216 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=390 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=116 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=21 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=96 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=74 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=43 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=59 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=34 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=71 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=27 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="http://s73.photobucket.com/albums/i236/fasion/popcorn%20profile/spacer.gif" WIDTH=52 HEIGHT=1 ALT=""></TD>
</TR>
</TABLE>
<!-- End ImageReady Slices -->
</BODY>
</HTML>

Major Payne
06-27-2007, 07:16 PM
Is this close to what you want on the page and mouseovers?:

mrjohnbridge.html (http://www.paynelessdesigns.com/Code_Help/mrjohnbridge.html)

Ron

mrjohnbridge
06-28-2007, 01:12 AM
yes thats spot on mate,i can mess around with the setting and positioning of the txt myself.....good job :)
i really appreciate it

Major Payne
06-28-2007, 10:15 AM
Three of your images quit showing up from PhotoBucket.com. so the first three links are text type. At least you get the idea of using mouseovers for the links you want and you can adjust the width of tooltip box to fit whatever text you use as well as color background. Hope you don't mind my removing the table tags. Was easier to get images where I wanted them and didn't need all those spacer images at the bottom.

Ron

mrjohnbridge
06-28-2007, 11:51 AM
yea they quit showing becuase on note pad after you replace the basic code with the image links using /images" it adjusted the code or never copied it properly....i sorted it but you copied the code before i had chance to edit my post...no worries though :)

you see how you moved my bottom hover links further down the page,im able to move them up again aren't i just using the top and left adjustment bits on the relievent code and it wont effect the layout as i noticed you changed my background by putting a URL in it...i forgot that bit (cheers)

i can see how the link works now when i compare my coding to yours so thanks alot...you have helped me alot

Major Payne
06-28-2007, 05:05 PM
You're welcome. Some days I'm quick, others I'm slower than a crippled snail. I only moved the bottom links down with a margin set for top/bottom, I think. Just change as required. The background image would be nicer if you just had a slice of one image that would tile nicely. Do I need to leave the page up on my site?

Ron

mrjohnbridge
06-28-2007, 05:56 PM
no i have saved the code now on my computer,i hope you dont mind.

thanks very much for your help