Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

selection linking?

Status
Not open for further replies.

darkprince

Programmer
Jun 4, 2002
165
AU
hello

i was wondering if you can select like the width and height of an area of the middle of a image and link it e.g.

if there was an image thats 400x400 pixels and it has the word sign-up in the middle can you link and select the word without linking the whole image.



and how do you change it so that links aren't underlined?

thanks in advance
ciao
 
To make your links 'plain' as in no underline ...
in your style sheet you will want something like:

a { color: white; font-family: Arial, Helvetica, sans-serif; font-size: 10.5pt; text-decoration: none;}

the 'text-dexoration: none' part is the stuff that will remove the underline.

 
hey thanks for the mapping thing it works great and sorry that im replying to this so late but where do i put that code to make the links not underlined? i can't work out where to put it?

thx in advance
ciao
 
in the head section add
<head>
<style>
a:active { text-decoration: none; }
a:hover { text-decoration: none; }
a:link { text-decoration: none; }
</style>
</head>
this will take out all underlines on links in the page


A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top