css to format the last line of question | XM Community
Skip to main content
Question

css to format the last line of question

  • August 8, 2023
  • 2 replies
  • 36 views

Forum|alt.badge.img+3

Can anyone help me in formatting the last line of question with CSS?
The code I currently have is “ .Skin .QuestionText{font-weight:700 !important}
.Skin .QuestionText{font-size:16pt !important}”, but it formats the whole question, I want something to only format the last line, if anyone can please help?
 

 

2 replies

rgupta15
Level 4 ●●●●
Forum|alt.badge.img+8
  • Level 4 ●●●●
  • 92 replies
  • August 9, 2023

.Skin .QuestionText class is for the whole question text. If you want to update just that highlighted part just add a span class with let’ say instruction and then change the code to following:

.instruction{font-weight:700 !important}
.instruction{font-size:16pt !important}


rgupta15
Level 4 ●●●●
Forum|alt.badge.img+8
  • Level 4 ●●●●
  • 92 replies
  • August 9, 2023

to add span class use

<span class=’instruction’>Select one.</span>