The method that julianmatz would work if you did not have a theme already applied to your site. By applying a theme, Frontpage puts these styles in a file inside of the _themes folder, and you must do any configuration changes in that file for them to reflect in your site.
If you want to change the styles in your theme once it has been aplied to your site, then:
1. Under the folder list for your site, open the _themes folder
2. Open the folder with the name of your theme, for example journal
3. Open the file named theme.css
4. In the window named Style, click on the Style button
5. The .ms-nav a styles are for the link text on the nav bar buttons
6. Scroll to the .ms-nav a, .ms-nav a:hover, and .ms-nav a:visited links, and click on Modify for each style
7. Change the properties according to your needs
8. Save the file
An alternative in Frontpage would be to create a custom theme, which would allow you to set those styles at that time. Using a theme makes the CSS process easier in Frontpage. You cannot, however use themes with another editor such as Dreamweaver, so CSS would work best in that case.
nprignano
Main Topics
Browse All Topics





by: julianmatzPosted on 2005-10-14 at 00:30:01ID: 15083498
Hello!
I think CSS would be the easiest...
Here is an example:
<html>
<head>
<title>Test</title>
<style type="text/css">
.nav { color: #003366; background-color: #ffffff; font-weight: bold }
</style>
</head>
<body>
<p><input type="button" value="Button" name="B1" class="nav"></p>
</body>
</html>