Questions tagged [text-styling]
139 questions
0
votes
1 answer
Styling of labels not responding to CSS
Basic form and labels.
label {
margin-top: 1em; /*or padding-top: 20em or any em changes nothing*/
margin-left: 2em /* padding-left: 20em or any em actually applies the styles*/
}
input {
margin: 4em; /* or padding: in any amount works. …

questionsneedanswers
- 41
- 5
0
votes
2 answers
How to build a font generator in iOS Swift and allowing pasting to clipboard
I'm now building a listview to display fonts from the UIFonts framework. However, for using UIPasteboard.general.string, the fonts are not copied to the clipboard and only the plain text is transferred.
I've tried including the MobileCoreServices…

21.kaw
- 583
- 2
- 7
- 18
0
votes
4 answers
Clear the text style of the Element using Javascript
I need to clear the text decoration property of the element using java script.
Currently I am setting text decoration property of element to 'line-through'. In some point of time i need to undo the strike process.
How to reset the text decoration…

Vignesh Babu
- 670
- 13
- 30
0
votes
2 answers
How to change the text color of radio button options in HTML / CSS?
I have used a black colour background image for my HTML page. I want to change the radio button labels/ texts to white ( just like the questions) How do I do that? Following is my code snippet.This is how it is looking on the page.
0
votes
2 answers
Change fontSize for text component with function in React Native
I am trying to adjust the font size of a text object inside a timer based on the remaining time. As there are fewer digits to display I want the text to get larger. The problem I'm having is it looks like you can't call a function in the style…

SunnyNonsense
- 410
- 3
- 22
0
votes
1 answer
Solution for CSS Border iOS appearance issue?
I recently added the following code to one of my text elements to add a cool underline to it:
border-bottom: 2px solid transparent!important;
border-image: linear-gradient(0.25turn, rgb(0, 0, 0), rgb(255, 0, 0), rgb(255, 204,…

Deziox
- 3
- 1
0
votes
0 answers
Highcharts label text is not properly rendered
I am using highcharts in angular project, whenever labels are loading at the bottom text is not properly rendered, Please refer the image to find the exact issue (100.00%) please see braces.

Venu Madhav
- 413
- 1
- 5
- 14
0
votes
1 answer
problem with append text with style in richtextfx
i want to append specific text with style in StyleClassedTextArea in richtextfx using method append(String text, String sytleClass) but there was a problem
StyleClassTextArea textarea=new…

Logesh-0304
- 109
- 9
0
votes
1 answer
How to add alternate colors to a table body(tbody) using css?
I have a table below in html with corresponding css. The rows come from jquery function inside tbody. I want to make alternate rows in different colors. (eg. red for all even rows). I tried using nth-child(even) but since it is inside the , it…

Karan Chauhan
- 13
- 2
0
votes
1 answer
Wrap Entire React Native App With One Font
I am looking for a simple way of wrapping my entire react native app with one font but I am having trouble finding documentation on the best way to do this.
Does anyone have any suggestions or references I can read through? Mostly what I am reading…

Olivia
- 1,843
- 3
- 27
- 48
0
votes
2 answers
Why each word is in a separate line?
I have a problem, it is weird, I thought I have finished a task but I was playing with the browser and then boom, a problem, so I have a container with flex displaying, it contains links elements, each element has a text, but now, the text is not…

TaouBen
- 1,165
- 1
- 15
- 41
0
votes
0 answers
Bold text between asterix React Native
I have a RN app which communicates with my backend. In this app, there are some fields which have dynamic styling. It's formatted in a pretty standard format.
asterix bold text asterix
asterix asterix italic text
I want to use this string (which I…

Isonlaxman
- 93
- 8
0
votes
0 answers
double underline in Jaspersoft Studio Textfield
I am currently working on a jaspersoft report and i want to underline the grand total value of my invoice with a double underline.
I already tried it with the following HTML Style (Textfield Markup is set to HTML) :
"
eckad158
- 385
- 6
- 19

eckad158
- 385
- 6
- 19
0
votes
0 answers
Change the color of the text in list item Text
I'm trying to change the color of my text of the ListItem but I am unable to do it. The background color is changed through Style class. "DeleteClass" but I am unable to change the text color through same. image is attached and the background color…

reactNoob
- 11
- 3
0
votes
0 answers
Loosing jQuery styling in table with pagination
I have a paginated table with some prices in it. I would like to highlight the lowest price in the table.
My prices are located in the 6,7 and 8th columns. I need to evaluate each row. The script does a wonderful job, but unfortunately when I move…