How do I do this? I think its basic HTML (premade codes would be loved)?

  • Thread starter Thread starter Elemental Silver
  • Start date Start date
E

Elemental Silver

Guest
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.
 
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
 
Back
Top