Tagged Questions
The fontfamily tag has no wiki summary.
13
votes
2answers
139 views
Do I need to wrap quotes around font family names in CSS?
I remember hearing a long time ago that it was considered "best practice" to wrap quotes around font names that contain multiple words in the CSS font-family property, like this:
font-family: "Arial ...
9
votes
2answers
4k views
How do I Change the FontFamily on a ContentPresenter?
I have a custom template for an expander that is close to the code below. I had to change some of the code to take out custom classes, brushes, etc..
<Style TargetType="{x:Type Expander}">
...
4
votes
1answer
254 views
Android WebView safe font family?
No, like others, I don't want to use custom fonts. I am looking for list of WebView safe fonts that can be used without using CSS3's custom @font-face, which loads ttf/wof/eot font from web/local ...
4
votes
6answers
306 views
Wingdings font family does not seem to work on Firefox and Opera
I was using the Wingdings font in the CSS for some symbols like a pencil and a home icon.
It worked on IE, Chrome and Safari but not in Firefox and Opera. I googled it but did not find any better ...
4
votes
2answers
229 views
How does the font-family property work in CSS?
How does the font-family property work in CSS? Why is more than one font used? Isn't only one font used at a time by the browser?
4
votes
1answer
72 views
Second choice font in HTML
This might be slightly basic. Sorry for that but I was wondering if it is possible that the second choice font we specify in HTML (using font/font-family) can be of a different font-size.
Eg. Use ...
3
votes
3answers
67 views
Browser font defaulting
Say if I set the font-family for the page body to font1, font2, font3 and then I set the h1 tag's font family to font4, font5. If font 4 and 5 weren't installed, would the browser try font 1,2 and 3 ...
3
votes
8answers
4k views
setting css font-family to a safe handwriting font
In CSS, I usually go with the usual
font-family: Arial, Helvetica, sans-serif;
For a little change, I'm going for a font that looks like handwriting. Can some of the expert CSS folks here suggest ...
2
votes
3answers
112 views
Problem loading MORE than one custom font blackberry
I tried to load a custom font, which works. Now I have got the problem Iam not able to use more than one custom font in an application. If i add three labelFields each with a different font, only the ...
2
votes
5answers
147 views
How to Apply global font to whole HTML document
I have one HTML page which includes some text and formatting. I want to make it Have the same font-family and the same text-size ignoring all inner formatting of text.
I want to set a global font ...
2
votes
1answer
89 views
List of Built-in WPF Fonts
I'm looking for the list of "safe" font families to use in a WPF application - font families that should be installed on all clients machines capable of running WPF. Silverlight has a well defined ...
2
votes
3answers
157 views
CSS font-family displays differently on Windows and Mac OS X
For some reason, the following two code snippets display correctly on Mac OS X but are completely ignored on a Windows i.e. the font reverts to Times New Roman with default sizes and margins. Any idea ...
2
votes
3answers
293 views
c# Get all available FontFamily
I have an input box, and people type a font in and it saves what they type as a JPEG. All works fine. But when they type a font name like 'times new roman' it has to be capitalised properly to ...
2
votes
1answer
133 views
Adjust font size depending on which font is used from a font stack
I'm using one of the new google api fonts for a heading on a site. It's Yannone Kaffeesatz and is quite a condensed typeface.
My font stack is as follows:
font-family: 'Yanone Kaffeesatz', ...
2
votes
1answer
775 views
2
votes
3answers
503 views
third font in font family is significantly larger
For my website I have chosen to use some pretty obscure fonts in my font family. The most well known font (3rd in family) is Century Gothic, which most computers have.
font-family:Tw Cen MT,Gill ...
1
vote
1answer
54 views
Set default font-family in jWYSIWYG
I set the font-family in the jquery.jwysiwyg.js (line-# 497 where < body > is defined) and added a CSS …
$('#wysiwyg').wysiwyg({css : { fontFamily: 'Arial, Tahoma', fontSize : '12px', color : ...
1
vote
0answers
19 views
System.Drawing.FontFamily.GenericSansSerif - What affects the underlying font it selects?
I am reviewing image generation code that uses FontFamily.GenericSansSerif from the system.drawing namespace. I typically see code like that at the tail end of xhtml/css font selection statements as ...
1
vote
2answers
42 views
Different Font for different button states
I am using a Toggle button control in Silverlight. Please tell how can i use a different font family for its Checked and Unchecked states. I have tried editing Toggle button template using Expression ...
1
vote
1answer
164 views
WPF, Font style for multiple controls
ok, I might be missing something really easy, But I want to use the same Font family, Font Size, and color for multiple controls.
Is there a way to create one style for this and apply it different ...
1
vote
3answers
163 views
Change PRE style but preserve whitespace distance
I'm displaying some content using the PRE tag, because it's vital to preserve the whitespace as is.
However, when I'm trying to change the PRE font-family, the whitespace indentation falls apart.
To ...
1
vote
4answers
968 views
Webfonts used within font fallback in IE8
I’m currently trying to implement webfonts on the site I build, I want to use it as a fallback within the font-family attribute, i.e. If the character is not represented in Arial / Helvetica then it ...
1
vote
1answer
1k views
Using CSS font-family to select Droid fonts not working on Android
I discovered that the following HTML code does not work on Android (it will only use the default font: Droid Sans. On desktop it is working as expected.
<p style='font-family: "Droid ...
1
vote
2answers
571 views
Change Drupal font Site-Wide?
There are a few pretty impressive font apps out there. My favourite is Font your Face (http://drupal.org/project/fontyourface). Only problem is it only allows for you to use existing sources. i.e.
...
1
vote
1answer
430 views
font-size/font-family has no effect
This is a related issue to my previous question.
I have modified the code suggested for preface headings to modify the p tags underneath the headings.
<xsl:template ...
1
vote
2answers
1k views
Can't override a global WPF style that is set by TargetType on a single specific control
I have a style applied to all my textboxes, defined in a resource dictionary..
<Style TargetType="TextBlock">
<Setter Property="TextBlock.FontSize" Value="{Binding ...
1
vote
1answer
738 views
Internet Explorer: drop down does not display option font family
#select-arial { font-family: Arial; }
#select-verdana { font-family: Verdana; }
#select-geneva { font-family: Geneva; }
#select-sans-serif { font-family: Sans-Serif; }
#select-courier { font-family: ...
1
vote
2answers
2k views
Get font name from FontFamily in WPF
I'm currently working on a little font organization/preview application for myself, however, I'm having a hard time getting the exact information I need.
I've found that I can load an external font ...
1
vote
2answers
1k views
Set FontFamily and FontSize for the application in App.xaml
How can I set the FontFamily and FontSize for the application in App.xaml?
0
votes
1answer
38 views
CSS: IE “ignores” font-family, except for in body
I'm having trouble getting IE to recognise a font in a wordpress site I'm testing. I'm using Helvetica for most of the site, and "Harabara" for certain smaller sections. To do this I have the body's ...
0
votes
0answers
22 views
How to modify dynamically the limit of character inside textarea in function of font-size and font-family
i have to limit character of textarea in function of the size of text.
I have two select like this:
<select name="fontsize">
<option value="9px">9px</option>
<option ...
0
votes
1answer
51 views
How to limit text in textarea in html in function of fontsize
i have a textarea in which users can put only a limited number of character. I have a font-size selector and a font-family selector associated whit it. This textarea is on a image and i have to limit ...
0
votes
1answer
33 views
Text downward shift when viewing webpage in Windows
After developing a page in Ubuntu, I viewed it in Windows 7.
I found a slight downward shift in the text when viewed in Windows.
The left image below is a screenshot from Google Chrome on Ubuntu ...
0
votes
1answer
136 views
Add font family and font size in UIPickerView
I'm a newbie to iOS programming, I have a project and my requirements are
1: I have to add font family
2: In the same way, I have to add font size
These are to be added with a done button on top ...
0
votes
0answers
39 views
@font-face: Only using one font-family with different font-weights?
I use the font "Open Sans" for a website I'm working on. Right now I'm using Google Web Fonts to load it but I realized it's not the most reliable way when it randomly began to use the bold 700 ...
0
votes
1answer
49 views
How to have C# use a font based on css/svg font-family string?
In Microsoft's SVG Rendering Engine for C#, the font-family attribute is defined as follows:
[SvgAttribute("font-family")]
public virtual Font FontFamily
{
get { return this._font; }
set { ...
0
votes
2answers
54 views
Monospace font in IE8 ignores spaces
I'm trying to get a monospaced asci table working, as seen here:
<pre> tag and css font-family
This works for me on all browsers, except IE8.
On IE8, the spaces all get compressed into one ...
0
votes
0answers
24 views
How to retrieve all installed fonts in windows using . net 2?
I've been using System.Drawing to retrieve installed font families. But then I realized it doesn't show all fonts. Some are missing. Like trajan pro and some more.
Why is it that happening?
Is there ...
0
votes
1answer
111 views
how to show text in blackberry in other languges?
i want to show malayalam script in my application in blackberry 5.0.i tried with following code. but it shows text in english only.
try {
alphaSerifFamily = FontFamily.forName("BBAlpha ...
0
votes
0answers
122 views
Get font family from dropdown menu for printing [closed]
I implemented @font-face in my offline web pages as it is explained here http://sixrevisions.com/css/font-face-guide/ and bound font-face to a dropdown box so user can choose between different fonts. ...
0
votes
0answers
80 views
Is it possible to specify a fallback font without breaking font embedding in Flex 4?
Seemingly against all sense, specifying more than just your embedded font in a font-family property breaks the font embedding and has your app jump to the proceeding fonts in the font family. For ...
0
votes
0answers
227 views
Server-side browser detection for @font-face
I want to use different styles of the same web font family in an HTML document.
I have two choices:
1. Declaring multiple font-family names:
@font-face {
font-family: 'MyFont';
src: ...
0
votes
1answer
100 views
external font not working in device iphone sdk
I have used external font in my app. I have added the font in plist and the font is working in the simulator but not in the device.
Anybody please let me know if i am missing anything.
Thank you,
...
0
votes
1answer
159 views
Measure length of text for a label
I'm trying to dynamically shorten a label based on available space. I use FormattedText to determine the length of the candidate string
formattedText = new FormattedText(candidateString, ...
0
votes
1answer
697 views
C++ Gdiplus::Font changing font size and family
Look this code
Gdiplus::Graphics g(hDC);
Gdiplus::Font *f = new Font(L"Times new roman", 16);
Gdiplus::SolidBrush b(Gdiplus::Color(255,0,0,0));
g.DrawString(L"Hello", 5, f, ...
0
votes
1answer
371 views
Flex: How Do I Reference the System Font?
I've embedded a font in my component. All of the text in the component uses the embedded font. But, I want a button to use the standard system font. How do I set the button's fontFamily to the system ...
0
votes
2answers
270 views
How to change FontFamily of Window form?
I cannot change fontfamily or fontstyle for title of Window Form even though I have already set these properties.The default fontfamily is MS UI Gothic and I want change to meiryo.At XML file, It ...
-1
votes
2answers
60 views
What's the ipad font for these texts?
Can someone tell me what's the font family names for above texts (title, subtitle, author & content)?
Thanks
-2
votes
1answer
369 views
can i set a font family inside <li> tag
im guessing not cause i've been trying it with examples and nthing works...
but im curious why not? and how im gonna set it ?
thnx!