Hey guys,
I need to align the 3 choices pictured in the image. I tried different options for the following but changing this affected everything else on the page. If I change it to static it looks great but changes many other page elements. How do I specify only the items in the screenshot?
#commentform label {
position: absolute or static etc.;
Thanks!
Hey Jasmer!
Try adding this to your custom CSS.
#gasp_p label {
position: relative !important;
display: block !important;
float: none !important;
clear: none !important;
left: 0px !important;
}
Best regards,
Elliott
Hi Elliott,
Almost perfect! Check out the link above again. Here’s a screenshot.
https://dl.dropboxusercontent.com/u/1049926/Screen%20Shot%202014-12-21%20at%201.14.37%20PM.png
The boxes are perfect.
As you can see in Safari and Google Chrome, the text “confirm you are not…” needs to be moved right about 1px. Can we alter that code?
I notice in Firefox it’s not as big of a problem so I imagine there will be some variance and it is just a matter of finding the right balance? That’s too bad because it will never be aligned perfectly this way.
Hey!
You can try this:
p#gasp_p label input {
margin-right: 5px;
}
Best regards,
Ismael
Thank you Ismael!