Jump to content

using font "webdings" SOLVED


Recommended Posts

From: http://www.microsoft.com/typography/web/fonts/webdings/default.htm


Using Webdings
Webdings can be specified within Web pages using either Cascading Style Sheets, or the FONT FACE tag. Because Webdings is a fully functional TrueType font it will look great on screen and in print, and can be used with other Windows applications, like Word and PowerPoint.

Unfortunately the use of symbol fonts on the Web is problematic. If a Web page designer specifies a text font such as Verdana, and the reader doesn't have the font installed the text will still be displayed using their default font. However, if a Web page specifies a symbol font which isn't installed, the reader will see gibberish. For this reason Webdings is best suited for use on corporate Intranet sites, and for Internet Explorer 4 specific content.

This sample page shows the symbols specified in an HTML page using '' values from 33 to 255.
Link to comment
Share on other sites

All that said, it really would be best for you to use images. Here are the two checkbox states in question in images:
I provided the 12px and 14px versions.
Use them in sprites like this.

.wingding_checked_1 {
 background:url('../images/wingding_checkboxes.gif') no-repeat; 
 width:12px; height:12px; 
 display:block; 
 background-position:0px 0px;
}
.wingding_checked_2 {
 background:url('../images/wingding_checkboxes.gif') no-repeat; 
 width:12px; height:12px; display:block; 
 background-position:12px 0px;
}
.wingding_unchecked_1 {
 background:url('../images/wingding_checkboxes.gif') no-repeat; 
 width:12px; height:12px; display:block; 
 background-position:24px 0px;
}
.wingding_checked_3 {
 background:url('../images/wingding_checkboxes.gif') no-repeat; 
 width:12px; height:12px; display:block; 
 background-position:0px 12px;
}
.wingding_checked_4 {
 background:url('../images/wingding_checkboxes.gif') no-repeat; 
 width:12px; height:12px; display:block; 
 background-position:14px 12px;
}
.wingding_unchecked_2 {
 background:url('../images/wingding_checkboxes.gif') no-repeat; 
 width:12px; height:12px; display:block; 
 background-position:28px 12px;
}

42443_r9uHv6WnrORdQJh5jtif_t

Link to comment
Share on other sites

I uploaded the pics on photobucket and linked them to my page..works! thanks again..
do you happen to know how to get rid of a dopdown menu in "HOME" ...I´m using module "top horizontal menu" ?!

Link to comment
Share on other sites

Because that was the easiest and fastest solution for me. I know near to nothing about coding and stumble over little things like "do I have to put the braces at beginning and end of the code?" etc. ...

Link to comment
Share on other sites

×
×
  • Create New...