HighDots Forums  

mouseover fonts

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss mouseover fonts in the Macromedia Dreamweaver forum.



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

Default mouseover fonts - 03-03-2005 , 01:48 PM






Is there a way to change the font on a mouseover message?

Reply With Quote
  #2  
Old   
Kenneth W. Binney
 
Posts: n/a

Default Re: mouseover fonts - 03-03-2005 , 02:32 PM






Hi Rita:


I'm no expert, but my guess is that Windows, and no doubt MacOS as well,
provide a number of system defined fonts. These fonts are configured by the
end user and that all applications are expected to use. i.e.the menu font,
the caption font, the tooltip font and others. Some of the special fonts
have been given symbolic names but these are not available to dynamic
inspection.



"rita62" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
Is there a way to change the font on a mouseover message?



Reply With Quote
  #3  
Old   
Jeff North
 
Posts: n/a

Default Re: mouseover fonts - 03-03-2005 , 05:39 PM



Quote:
| "rita62" <webforumsuser (AT) macromedia (DOT) com> wrote in message
| news:d07pmh$h8$1 (AT) forums (DOT) macromedia.com...
| > Is there a way to change the font on a mouseover message?
|
<my server hasn't got rita62 post so piggyback on W. Binney's post>

On Thu, 3 Mar 2005 15:32:21 -0500, in macromedia.dreamweaver "Kenneth
W. Binney" <kenbinney (AT) ossiningdesignguild (DOT) com> wrote:

Quote:
| Hi Rita:
|
| I'm no expert, but my guess is that Windows, and no doubt MacOS as well,
| provide a number of system defined fonts.
Close and near enough.

Quote:
| These fonts are configured by the
| end user and that all applications are expected to use. i.e.the menu font,
| the caption font, the tooltip font and others. Some of the special fonts
| have been given symbolic names but these are not available to dynamic
| inspection.
This is why you need to specify font-families "Verdana, Arial,
Helvetica, sans-serif". If the browser can't find a font then it moves
to the next on. This final entry is the generic one that the system
has been configured to use.

As to rita62 question.

If you are using hyperlinks then you can use CSS to control the
format. A silly example would be:

<style type="text/css">
a:link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 50%; /* really small text */
color: lime; /* ugly colour for text */
}

a:hover {
font-family: fantasy; /* pick up system defined font */
font-size: 200%; /* really large text */
color: red; /* ugly colour 2 */
}
</style>

Your html would look like
<a href="nextpage.htm">Click for next page</a>
---------------------------------------------------------------
jnorthau (AT) yourpantsyahoo (DOT) com.au : Remove your pants to reply
---------------------------------------------------------------


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 - 2010, Jelsoft Enterprises Ltd.