You are viewing limited content. For full access, please sign in.

Question

Question

Make the "Text Below Field" Bold

asked on June 17

I am using the moder forms and need to Make the "Text Below Field" Bold.  I found this information but unable to execute.  

.largeHelpText .cf-helptext {font-size: 1em!important;}

 

What am I doing wrong?

largeHelpText.jpg
0 0

Replies

replied on June 17 Show version history

You can use HTML in fields in the Modern Designer, so you could just use:

<b>Text here</b>

If you want to use CSS, this would work as well:

.cf-helptext {font-weight: bold !important;}
0 0
replied on June 17

Note: Including basic HTML tags in field labels was added to the Modern Designer in Cloud recently, but is not yet available in Self-Hosted systems. 

We were recently told it would be coming in the next release (reference: Zac's response to this post).  It's unclear if the next release will happen before Laserfiche 12 is released this fall, but I would guess the next release is Laserfiche 12...

1 0
replied on June 18

While HTML tags don't yet work in field labels, they do work in the text above and below the field on self-hosted.

3 0
replied on June 18

Oh, haha - I could have sworn it didn't work in those either - but I just tested and you're right - that's really good to know.

0 0
replied on June 17

Assuming your CSS selector works, you appear to only be setting the font size, not the font weight (which is what affects boldness). You could try this instead:

font-weight: bold;

 

0 0
replied on June 17

Try this one on for size div > .un-help {
    font-weight: bold;
}

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.