Click to See Complete Forum and Search --> : Easy!


Jonathan
06-29-2003, 01:50 AM
How do you change the link size?

jeffmott
06-29-2003, 02:32 AM
For one link...<a href="page.html" style="font-size: 16px"></a>For all links...<head>
<style type="text/css">
a { font-size: larger }
</style>
</head>
http://www.w3.org/TR/1998/REC-CSS2-19980512/fonts.html#propdef-font-size

PeOfEo
06-29-2003, 02:50 AM
Do you mean when a mouse rolls over it or just in general. To make it where it gets bigger on mouseover you use
<style><!--a:hover{font-size:30px; }--></style>

Jonathan
06-29-2003, 10:38 AM
Thanks