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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Increase the size of Texts on Main Page when mouse get's on it

Status
Not open for further replies.

salimwng

IS-IT--Management
Mar 11, 2002
134
MU
Hi,

I am actually working on an assignment and i have to design a WEB page of around 12 pages. I would like to have the TEXTS which are on the Main Page gets bigger when ( ONLY WHEN ) my mouse goes over it and once i remove the mouse pointer, it returns back to its normal state. The Texts are hyperlink which redirects the surfer to the respective page.

Is there a way of doing this through Javascript ?

Thank you for your help.
Salim
 
Texts are hyperlinks? Then...

Code:
<style type="text/css">
a  {font-size: 12pt; }
a:hover  {font-size: 42pt; }
</style>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top