Plugin Author
Phil
(@philsbury)
Hi @katieingram,
Looks like your theme css has all buttons floating left, this css should sort it:
.age-gate input[type="submit"] {
float: none;
}
Hope that helps
Thanks
Phil
Hmmm, gives me an error message when I add this to Custom CSS in the Advanced section.
“There are errors in your CSS. You can save your changes, but there may be display issues.”
And, nothing changes on the front end.
Plugin Author
Phil
(@philsbury)
Hi @katieingram,
The “error” is probably because the css editor doesn’t like things like input[type="submit"]. But it turns out, that css really just doesn’t work!
Give this a go instead, I have tested it with a css injector:
.age-gate-submit-yes,
.age-gate-submit-no {
float: none;
}
If it’s still not playing ball, put an !important after it:
.age-gate-submit-yes,
.age-gate-submit-no {
float: none !important;
}
Make sure you clear any caches if you have them after making the change too.
Thanks
Phil
You’re a genius! I used the first example without the important. Thanks!