Alrighty, im glad to lend a hand
There are many ways to create CSS styles, you can define the styles in your layout file, you can also make a external file containing these styles, or you can do it directly on the code tags, whichever suits your needs and preference.
I will explain how to achieve all those things by defining the styles on your layout directly, i recommend external files, but for a CSS "newbie" i think its better if we start out like this.
Firstly, remove those elements we spoke about, the blinking, and the bold on-hover effect.
Now go to the code pane on frontpage, the HTML editor, i dont use frontpage so i dont know where it is... i hope you can figure it out?
Find the following tag: </head>
Exactly Before it, type this:
<style type="text/css">
a:link { text-decoration: none; font-weight:normal; }
a:visited { text-decoration: none; font-weight:normal; }
a:hover { text-decoration: none; font-weight:normal; }
a:active { text-decoration: none; font-weight:normal; }
a { font-family: Arial, Helvetica, sans-serif; }
</style>
- <style type="text/css">
- a:link { text-decoration: none; font-weight:normal; }
- a:visited { text-decoration: none; font-weight:normal; }
- a:hover { text-decoration: none; font-weight:normal; }
- a:active { text-decoration: none; font-weight:normal; }
- a { font-family: Arial, Helvetica, sans-serif; }
- </style>
save your file, and there you go, you no longer have underlines on your links, ever.
we also defined a font type for your whole site.
at the same time, we also removed the bold on-hover "effect".
Now, to give your table a fixed width (If you want to, it was just a suggestion) find the following piece of code on your HTML pane (we will also center the whole thing in the middle of the screen):
right after the <body> tag, enter a new table:
<table width="760" align="center">
then, right after the </body> tag, enter:
</table>
many people will say you should drop tables and move to pure CSS, but i believe that that is something you should learn by yourself whenever you want