| Web Design & Programming Building websites, coding scripts or developing apps? html, css, javascripts, ajax, php, asp, java, c+, C++ and other geeky info is here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Status: Junior Member Join Date: Aug 2009 Posts: 1
![]() | Just basic coding or something I think. Two things. First you know when you hover your mouse over a word and theres a little bubble that pops up with whatever text the person wants? How do you do that? And second, How do you put multiple links on a picture? Like this for example --------------------------------------------- Link here l l Link here l Link here l -------------------------------------------- To different places? Thanks so much for any help. I'd personally like permade codes because its just for a fourm signature. |
| | |
| | #2 (permalink) |
| Status: Junior Member Join Date: Aug 2009 Posts: 1
![]() | The first one is easy, just use the title property, like this: * * <a href="…" title="bubble">mouse over me</a> If you don’t want to make a link, you can put the title attribute in a <span> tag instead. For the second, the easiest way is to just cut the picture into strips and make each one a link. Then display them with no space between them. There is also an image map feature, but that’s a little more complicated. You can read how to do that here: http://www.htmlcodetutorial.com/images/images_famsupp_220.html Keep in mind that forums don’t always allow any old sort of HTML, and there is probably a maximum length. |
| | |
| | #3 (permalink) |
| Status: Junior Member Join Date: Aug 2009 Posts: 1
![]() | 1st question <div title="your text here"> Content </div> 2nd question, they either cut the picture up into different pieces and then put it in a table. <table cellpadding="0" cellspacing="0"> <tr><td><img src="~yourpictop" /></td></tr> <r><td><img src="~yourpicbottom" /></td></tr> </table or they positioned a div with the links on top of the pic. something like this <div style="position:absolute; top:100; left:100; height:100; width:100; background-color:blue; z-index:0;"> image </div> <div style="position:absolute; top:110; left:110; height:80; width:80; background-color:red; z-index:1;"> links </div> good luck |
| | |
![]() |
| Thread Tools | |
| Display Modes | |
| |