HighDots Forums  

Re: Menu's using CSS

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Re: Menu's using CSS in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
osgood
 
Posts: n/a

Default Re: Menu's using CSS - 07-14-2003 , 05:28 AM






"manzz" webforumsuser (AT) macromedia (DOT) com wrote:

Quote:
I am busy updating a html menu, Im using the CSS and I've got the menu
buttons to underline when clicking, but need the buttons to underline
on the mouse roll-over.
This is the code that I.m using in my style sheets.

A:hover {color:#FFFFFF; font-family:arial; font-size:8pt;
text-decoration:underline; font-weight: bold} A:link {color:#FFFFFF;
text-decoration:underline; font-family:Arial; font-weight:bold;
font-size: 8pt} A:visited {color:#FFFFFF; text-decoration:none;
font-family:Arial; font-weight:bold; font-size: 8pt} A:active
{color:#FFFFFF; text-decoration:underline; font-family:Arial;
font-weight:bold; font-size: 8pt}

The menu is basically A href links to other pages.
I will also need to have the button that I have chossen to remain
highlighted.

Thanks!!



Link, visted, hover, active. In that order. Plus you shouldnt be using
pt specification for font sizing, Using pixels will give you a uniform
look cross-browser cross-platform.

<style>
A:link {color:#FFFFFF; text-decoration:underline; font-family:Arial;
font-weight:bold; font-size: 8pt}
A:visited {color:#FFFFFF; text-decoration:none; font-family:Arial;
font-weight:bold; font-size: 8pt}
A:hover {color:#FFFFFF; font-family:arial; font-size:8pt;
text-decoration:underline; font-weight: bold}
A:active {color:#FFFFFF; text-decoration:underline; font-family:Arial;
font-weight:bold; font-size: 8pt}
</style>



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.