Jump to content

Can you change the font size in a table?


Teeger671

Recommended Posts

I'd like a much bigger font and size table. Thanks!

<table border="2" bgcolor="#33CCCC" <tr>  <td><A href="http://www.freewebs.com/teeger671/index.htm">Home</A> </td>  <td><A href="http://icandme.9.forumer.com/index.php?">Forum</A> </td><td><A href="http://icandme.9.forumer.com/index.php?c=17">Work at Home   help</A></td><td><A   href="http://pub30.bravenet.com/chat/show.php?usernum=2541657076&cpv=2">Chat   room</A></tr>     </table>

Link to comment
Share on other sites

In your <a> tags, use the following code:

style="font-size: 00px">

Where 00px is the font size in pixels.

Link to comment
Share on other sites

If you want your site to load faster, use this code between <head> and </head>

<link rel="stylesheet" type="text/css" href="style.css" />

.And style.css looks like this:

a:link, a:active, a:visited { font-size: 00px; }a:hover { font-size: 00px; }

In the a:hover you can change i.e the text-decoration to be nothing, so you get some "effects" at your site:

a:link, a:active, a:visited { font-size: 00px; }a:hover { font-size: 00px; text-decoration: none; }

Like AeroCoder, change 00 :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...