-
Re: tweak css float...
Dave Roberts Jan 18, 2019 4:05 AM (in response to Christine LeBlanc)You might just need to add an !important flag to the end of your CSS:
.mktoForm.mktoLayoutAbove .mktoRadioList,
.mktoForm.mktoLayoutAbove .mktoCheckboxList {
float: left !important;
clear: left !important;
}
-
Re: tweak css float...
Christine LeBlanc Jan 24, 2019 4:52 AM (in response to Dave Roberts)Hmm, that was not it as I do have !important on every customized rule; but I did manage figure it out by tweaking some other code.
How about the distance between tick box and label?
It is strange that I have this class successfully working on some forms, but others not:
.mktoForm .mktoCheckboxList label { /*controls distance between tick box & accompanying label*/
padding-left: 25px !important;
line-height: 1.75em !important;
}
Any other ideas how to target on forms where this is not applying?
-
Re: tweak css float...
Dave Roberts Jan 24, 2019 6:53 AM (in response to Christine LeBlanc)Hey Christine, could you add a link to a page with one of the forms where this issue is happening?
I can dig into the CSS a little and see if I can surface something for you. Sounds like it's some kind of conflict with other styles if it works on some forms but not others -- maybe a float or another rule that re-adjusts the spacing somewhere in the stylesheet.
-
-