<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Change Size of Form Field Help Text? in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199336#M7168</link>
    <description>&lt;P&gt;Hi Lindsay, there are a few ways of doing it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could add in CSS that just applies to this page by going to Settings &amp;gt; Advanced Options &amp;gt; Head HTML and adding:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;  legend { font-size: 12px; } 
&amp;lt;/style&amp;gt;&lt;/PRE&gt;&lt;P&gt;This will only apply to this page and only to legend elements (the "This will ensure you receive the appropriate partner discount." is the only legend element on this page).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;B&gt;Stephanie O'Gay Garcia&lt;/B&gt;&lt;BR /&gt;HubSpot Design / Development / Automation&lt;BR /&gt;&lt;A href="http://www.stephanieogaygarcia.com?utm_source=HubSpotCommunity" target="_blank"&gt;Website&lt;/A&gt; | &lt;A href="http://www.stephanieogaygarcia.com/contact?utm_source=HubSpotCommunity" target="_blank"&gt;Contact&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jul 2018 16:17:26 GMT</pubDate>
    <dc:creator>Stephanie-OG</dc:creator>
    <dc:date>2018-07-26T16:17:26Z</dc:date>
    <item>
      <title>Change Size of Form Field Help Text?</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199316#M7163</link>
      <description>&lt;P&gt;Hi everyone!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same situation - Hubspot Design rookie here, not sure where I would fix this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For this landing page:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.paro.io/partner-vc?hs_preview=CArkrymk-5967192896" target="_blank"&gt;https://www.paro.io/partner-vc?hs_preview=CArkrymk-5967192896&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Trying to change the size/style of the Help Text underneath the "Which firm referred you to Paro?" field? Not sure where/how exactly to put in the new style *just* for the help text. Can anyone point me in the right direction where exactly I'd make this change, and perhaps provide some sample code?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 15:29:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199316#M7163</guid>
      <dc:creator>lindsay_s_Chi</dc:creator>
      <dc:date>2018-07-26T15:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change Size of Form Field Help Text?</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199324#M7165</link>
      <description>&lt;P&gt;Hi Lindsay,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you go to your Design Manager and search for the Act2.css file, then use Ctrl + F to search for "legend" within the file, you should see something like this (it may all be on one line as well):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use font-size to set the font size, like this (I've used 12px as an example):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
    font-size: 12px;
}&lt;/PRE&gt;&lt;P&gt;Note that this will update the font-size for all "legend" items across your site.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;STRONG&gt;Stephanie O'Gay Garcia&lt;/STRONG&gt;&lt;BR /&gt;HubSpot Design / Development / Automation&lt;BR /&gt;&lt;A href="http://www.stephanieogaygarcia.com?utm_source=HubSpotCommunity" target="_blank"&gt;Website&lt;/A&gt; | &lt;A href="http://www.stephanieogaygarcia.com/contact?utm_source=HubSpotCommunity" target="_blank"&gt;Contact&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 15:41:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199324#M7165</guid>
      <dc:creator>Stephanie-OG</dc:creator>
      <dc:date>2018-07-26T15:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Change Size of Form Field Help Text?</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199329#M7166</link>
      <description>&lt;P&gt;Hey Stephanie!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for this!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two follow up questions:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Since I don't necessarily want to update it for *everyone* (I'm a contractor and don't want to mess with their main mojo), is there a way to update it for just my form? (or copy that .css file to a new one, attach it to my template only?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Will that change update all of the text in the form, or just the help text? I only want to update the help text, and I want to leave all other text as-is (the help text is what appears under the question)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Lindsay&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:00:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199329#M7166</guid>
      <dc:creator>lindsay_s_Chi</dc:creator>
      <dc:date>2018-07-26T16:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Change Size of Form Field Help Text?</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199336#M7168</link>
      <description>&lt;P&gt;Hi Lindsay, there are a few ways of doing it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could add in CSS that just applies to this page by going to Settings &amp;gt; Advanced Options &amp;gt; Head HTML and adding:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;  legend { font-size: 12px; } 
&amp;lt;/style&amp;gt;&lt;/PRE&gt;&lt;P&gt;This will only apply to this page and only to legend elements (the "This will ensure you receive the appropriate partner discount." is the only legend element on this page).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;B&gt;Stephanie O'Gay Garcia&lt;/B&gt;&lt;BR /&gt;HubSpot Design / Development / Automation&lt;BR /&gt;&lt;A href="http://www.stephanieogaygarcia.com?utm_source=HubSpotCommunity" target="_blank"&gt;Website&lt;/A&gt; | &lt;A href="http://www.stephanieogaygarcia.com/contact?utm_source=HubSpotCommunity" target="_blank"&gt;Contact&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:17:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199336#M7168</guid>
      <dc:creator>Stephanie-OG</dc:creator>
      <dc:date>2018-07-26T16:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Change Size of Form Field Help Text?</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199348#M7173</link>
      <description>&lt;P&gt;That did the trick, thank you Stephanie!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 17:00:52 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Change-Size-of-Form-Field-Help-Text/m-p/199348#M7173</guid>
      <dc:creator>lindsay_s_Chi</dc:creator>
      <dc:date>2018-07-26T17:00:52Z</dc:date>
    </item>
  </channel>
</rss>

