Questions tagged [font-style]

62 questions
0
votes
0 answers

What is the proper way to add a new Font to Android Studio Project (Material 3)?

I located a font I like from Google Fonts (Raleway) which produces a download of 18 separate ttf files: I started in the Type.kt file creating my own FontFamily from these files: val myFontFamily = FontFamily( Font(R.font.raleway_regular,…
0
votes
0 answers

Plot tick's font weight and Font style

I am plotting some results on a bar graph. I apply the fantasy font style but I do not believe the fantasy font style is what's being displayed. I have also tried to remove the bold text from the tick labels with no success. My code is as…
T.Lyons
  • 21
  • 2
0
votes
0 answers

font-feature-settings not working does not work if the letters are nearby

so, text is in and has font-feature-settings: "ss03" on; but the property applies only to the first letter, or to stand-alone letters, why? [1]: https://i.stack.imgur.com/NGpl6.png aaa a .ss03 { …
Goku
  • 1
  • 1
0
votes
1 answer

How can I use a left margin to indent text and make it vertical centered in a table cell and change that texts font features line by line

This is the code I currently have within my table and I want to be able to change font features line by line in th col span 2 block that has a background color of #ce000. NOTE: I know this is poorly formatted code and I'm working within wordpress…
0
votes
1 answer

How to set monaco's font style?

I need to display the words in italic within the editor. How can I do that? I didn't find how to set this in the IStandaloneEditorConstructionOptions options when passing it to create only how to specify that with defineTheme() like…
Jack
  • 16,276
  • 55
  • 159
  • 284
0
votes
1 answer

How to switch from Bold to Regular FontStyle with the same button

I apply a FontStyle Bold on a text selected with a button but I can't go back to the default value when I click on it again I would like that when I click the first time, the FontStyle Bold is applied and when I click again, the FontStyle Regular is…
Smoky
  • 1
  • 1
0
votes
1 answer

CSS - Font-style propriety - Oblique with variable angle

I would like to choose the angle of inclination of an font with the "font-style: oblique "angle"" Like on this example: https://developer.mozilla.org/en-US/docs/Web/CSS/font-style I would also like to use negative angle But I think I missed a…
Dubss
  • 9
0
votes
1 answer

How to fix view-source font problem in firefox

when i go to the any page view-source in Mozilla Firefox browser i have problem that you can see in screenshot... codes font in view-source of Mozilla Firefox browser are like that and that's where the problem come from, when i change '-moz-fixed'…
0
votes
1 answer

Toogle between multiple variables does not work?

I want a toggle between font style. For example: If fontstyle does not exist in an element or if it is italic or oblique to insert normal, if it is normal to remove fontstyle after clicking on normal button. I tried to solve this by inserting more…
deki0
  • 27
  • 7
0
votes
0 answers

ASP.NET MVC : make the font style bold in the list

enter image description here I'm using ASP.NET MVC. I want to make the font style bold. But I guess addList and insertList don't have bold property. How can I do it ?
0
votes
1 answer

VBA character Font Style

Pretend I have a sentence like this: "THIS IS MY CASE:" ":" is regular and I want to change its style like The character before it(E). But I don't know which object to use in this case. I want to find The index of ":" then I check Font Style of…
Hoan Cong
  • 29
  • 3
0
votes
2 answers

How to set DataGridView Rows FontStyle with condition at loading time?

How to change the Font Style of all Rows of a DataGridView based on a conditions? My condition is if Cell Value Equal 0 then FontStyle = Strikeout otherwise Regular Private Function DetailGridViewSetStyle() Dim dgv As DataGridView =…
0
votes
1 answer

Changing the fonts inside a table cell to Source Sans Pro

I want to change all the font inside the table to Source Sans Pro for a website that I'm working on. I'm not really an expert in HTML and I just need help on changing the font.
0
votes
0 answers

How do I make japanese text italic in Chrome?

I have a div whose contents the user can edit, since it has the attribute contenteditable="true". The user can type Chinese, Japanese, or Korean text in there, and style it as bold, italic, or underline. All works well in Firefox. But not in Chrome,…
MikeMichaels
  • 454
  • 1
  • 6
  • 25
0
votes
1 answer

Excel VBA Macro Replace Html Bold Tag With Bolded Text In Cell

I have the following: s = 1 f = 1 For i = 1 To UBound(Split(Range("B17").Value, "")) s = InStr(f, Range("B17").Value, ("")) f = InStr(s, Range("B17").Value, ("")) Range("B17").Characters(s, f - s + 1).Font.FontStyle =…
MBF
  • 336
  • 1
  • 4
  • 17