ahh.
haha.
i need helpp.
i know the code is like this
%26lt;a href=%26quot;link!%26quot;%26gt;text!%26lt;/a%26gt;
but it comes out like size 8..and i want the size to be bigger.
how can i do that if its possible?How to change link text size?!?%26lt;a href=%26quot;#%26quot; style=%26quot;text-size:larger;%26quot;%26gt;text!%26lt;/a%26gt;
or
%26lt;a href=%26quot;#%26quot; style=%26quot;text-size:16px;%26quot;%26gt;text!%26lt;/a%26gt;
also you can use external/internal css.How to change link text size?!?Control it via CSS in your %26lt;head%26gt; %26lt;/head%26gt; tags
%26lt;style type=%26quot;text/css%26quot;%26gt;
%26lt;!--
a:link {
font-size: 24px;
}
--%26gt;
%26lt;/style%26gt;
change 24 to any value you want. If yo uwant your visited links to be the same size
%26lt;style type=%26quot;text/css%26quot;%26gt;
%26lt;!--
a:link {
font-size: 24px;
}
a:visited {
font-size: 24px;
}
--%26gt;
%26lt;/style%26gt;