Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I am looking for a way to move the default position for the Umbraco 7 Forms radio button to the left of each text line. The default places the button atop the text and it seems like it may cause confusion.
Is there a simple style fix for this?
Seems to be a CSS problem. Is your input display block?
Best way to to this is to add flexbox on this parent container.
<div class="flex"> <input type="radio" /> <span>Blablabla</span> </div> .flex{ display: flex; flex-direction: row; flex-wrap: nowrap; }
Thank you!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Radio Button Styling
I am looking for a way to move the default position for the Umbraco 7 Forms radio button to the left of each text line. The default places the button atop the text and it seems like it may cause confusion.
Is there a simple style fix for this?
Seems to be a CSS problem. Is your input display block?
Best way to to this is to add flexbox on this parent container.
Thank you!
is working on a reply...