You can use notepad to open and work with your .css file sheet.
Below is an example for links in a side navigation as well as the rollover style.
.sidenav-c:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; text-decoration: none ; color: #FFFFFF ; font-weight: bold}
.sidenav-c { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; text-decoration: none ; color: #000000 ; font-weight: bold}
I assume your style sheet is linked properly to your HTML, so open up the HTML eiditer of Front Page and apply style sheet's as follows.
Style for link
<a href="../../test/test.html" class="sidenav-c">My Link</a>
Style for paragraph
<p class="content-text">My paragraph</p>
Style sheet applied in general; for example you need a certain section of a paragraph.
<span class="content-text-special">My Special Text</span>
It is good to know how these things work and the best way to really understand it is to know how to write it from scratch. HTML tools like Dreamweaver or not so great tools like Front Page, certainly speed up the process but eventually something will arise were you will have to actually look in the code to fix it.
[ 11-27-2003, 10:46 AM: Message edited by: pritchke ]
|