Go back

The Page links fonts

I put some code to control the look of the links, you can remove it and they will act just like your other page links.
Let's change it or remove it.
Right click on the HTML object go to Properties then object HTML and look Inside Page header once again. At the very top you'll see this:

Now let's get the menu lookin' goood.

Use web studio in the usual way highlight the text and change them the way you always like to.  They will keep the coding.

Note: If you are using a different font not in the web-safe-font
category uncheck turning un-safe-fonts into graphics in
"website properties" in the "Advanced" tab section.

Step 2
Changing the look of the page links

That in telling the link to be black even when visited and a mouse hovers over it. You can make that purple when visited and red hovered  or any
color(s)  you want.
text-decoration: none means none but you can put in
none   underline      overline    or   underline overline
in all of them or any one you want

a.GDD:link {color: black ; text-decoration: none ;}
a.GDD:visited {color: black ; text-decoration: none ;}
a.GDD:hover {color: black ; text-decoration: none ;}

Now right click on the links on the page and "Edit HTML Source"
You'll see class=GDD remove that if you want them to act like your regular page links

TIP: The easiest way find anything in " Edit HTML source " is to click on the edit menu at the top, and use search.. just put in class=GDD in the above case, and it will find them all for you.

The Page links color

Now that you see the text on your page looking the way you want and the drop downs are still working okay, on to step three where we'll work on the css so we can get the drops lookin' goood too.

If you have any questions so far use the WS4 forum

End of the Step two page