SOLVED

Making some text Bold in a form

Go to solution
Veronica_Flore2
Level 2

Making some text Bold in a form

Hi all,

I'm trying to do an activities registration form for our clients. We want to bold the name of the activity, but not the description of the activity. I was able to see it in the editor using <strong>activity name</strong> for the display value in the checkbox field. However, when I see the landing page preview, I see everything in bold (the field is not required). I'm using a guided landing page, not sure if this is something to take into consideration knowing that guided landing pages have some hidden formats.

form.PNG

Any help will be greatly appreciated.

Veronica

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Making some text Bold in a form

You're overriding the <label> styles in your global bootstrap.min.css. Make sure to check all your page styles as this isn't a Marketo thing.

To re-override for Marketo do:

.mktoForm label {

  font-weight: normal;

}

View solution in original post

3 REPLIES 3
SanfordWhiteman
Level 10 - Community Moderator

Re: Making some text Bold in a form

Add a <span> (not a <strong>) with an appropriate class around the activity name. Then style it in your custom CSS.

If you want more help you must provide a live URL.  We can't troubleshoot a screenshot.

Veronica_Flore2
Level 2

Re: Making some text Bold in a form

Hi Sanford Whiteman,

Can you work with a preview URL? Client & Manufacturer 2018 Summit - Activities

Thanks,

Veronica

SanfordWhiteman
Level 10 - Community Moderator

Re: Making some text Bold in a form

You're overriding the <label> styles in your global bootstrap.min.css. Make sure to check all your page styles as this isn't a Marketo thing.

To re-override for Marketo do:

.mktoForm label {

  font-weight: normal;

}