@esmi! Thanks for the link, but I am looking where I can edit the CSS I think! Where would I edit this?
Thanks
Via your theme’s stylesheet.
I have managed to access the CSS, but cant work out why the labels and submit button are to the right of the fields. I am trying to get it to work like this:
Label
Field
rather than:
Field Label
Any ideas?
Remove float:left; from:
input {
color: #4A4A4A;
float: left;
margin: 8px 0 9px;
padding: 4px 7px;
}
in style.css
Wow! Thanks!
The only problem I have now is that the comment label is dropping off the bottom. I dont know how to make it in the middle of the textarea.
How could I achieve this?
Try changing:
.comment-form-comment label {
display: inline-block;
margin-right: 5px;
}
to:
.comment-form-comment label {
display: block;
margin-right: 5px;
}
Thanks Esmi.
I think my explanation was not particularly clear. I am actually wanting the comment label to site on the left of the textarea but in the middle or top, but not above.
I have tried everything I can think of with no success.
I think my explanation was not particularly clear. I am actually wanting the comment label to site on the left of the textarea but in the middle or top, but not above.
Tricky. I would try playing with the height/line-height of the specific label.