CMS Development

JoanaVL
参加者

How can I align the radio buttons with their label?

解決

Hi, I have searched for this question here, but none of the solved posts helped with my problem.

 

How can I align the radio buttons with their labels on a form? It currently looks like this:

form.png

This is the first time I'm using radio buttons on a form.

 

I'm not a programmer but I know my way around html and css, and I can't get this to work, help me please!

0 いいね!
1件の承認済みベストアンサー
JasonRosa
解決策
HubSpot Employee
HubSpot Employee

How can I align the radio buttons with their label?

解決

Hey @JoanaVL awesome thank you! It looks like this is currently happening because of this style: 

body form.hs-form fieldset[class*="form-columns"] .hs-input {
    width: 100%;
}

which is setting all items with .hs-input to have a width of 100% (including the radio select buttons and checkbox buttons). I'd recommend keeping what you have above and adding the following so that your radio select buttons and checkbox buttons are styled properly: 

body form.hs-form fieldset[class*="form-columns"] input[type="radio"].hs-input,
body form.hs-form fieldset[class*="form-columns"] input[type="checkbox"].hs-input {
    width: auto;
}

元の投稿で解決策を見る

6件の返信
Sarah_K
参加者

How can I align the radio buttons with their label?

解決

hi! i'm having this issue to. I can't find where to go into the CSS to update this. If I go to the style sheets or templates, it takes me to all of them, not to this specific page/setting. Can anyone advise how to get into the form CSS to update? 

0 いいね!
CMoore42
メンバー

How can I align the radio buttons with their label?

解決

I have the same question as you Sarah_K!

JasonRosa
HubSpot Employee
HubSpot Employee

How can I align the radio buttons with their label?

解決

Hey @JoanaVL would you be able to send a link to the page that you're working on so that I can get a better look at the code? 

JoanaVL
参加者

How can I align the radio buttons with their label?

解決
0 いいね!
JasonRosa
解決策
HubSpot Employee
HubSpot Employee

How can I align the radio buttons with their label?

解決

Hey @JoanaVL awesome thank you! It looks like this is currently happening because of this style: 

body form.hs-form fieldset[class*="form-columns"] .hs-input {
    width: 100%;
}

which is setting all items with .hs-input to have a width of 100% (including the radio select buttons and checkbox buttons). I'd recommend keeping what you have above and adding the following so that your radio select buttons and checkbox buttons are styled properly: 

body form.hs-form fieldset[class*="form-columns"] input[type="radio"].hs-input,
body form.hs-form fieldset[class*="form-columns"] input[type="checkbox"].hs-input {
    width: auto;
}
JoanaVL
参加者

How can I align the radio buttons with their label?

解決

Ah it worked! Thank you for the quick reply!

0 いいね!