Hi
I want that elements (‘Name’, ’emai’l and ’empresa’) in comment form appear beside each other (1/3), instead of underneath.
https://novosite.graphitheque.net/wp-content/uploads/2023/10/comment_form.jpg
Appreciate your help.
Kind Regards
Hey diogovareta,
Thank you for the inquiry.
You can add this css code to align the comment fields beside each other.
#commentform p.comment-form-cookies-consent {
clear: both;
}
#commentform p.comment-form-email, #commentform p.comment-form-url, #commentform p.comment-form-author {
float: left;
margin-right: 30px;
width: 210px;
}
#commentform p.comment-form-cookies-consent label {
top: -5px;
}
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.
Best regards,
Ismael
Hi ismael,
Thanks for your support.
Can you please give the additional css code to center and align those 3 boxes with the box bellow?
https://novosite.graphitheque.net/wp-content/uploads/2023/11/Screenshot_5.jpg
Thanks
Hi,
Thank you for the update.
Have you tried to modify the width value in the css rule above? Please find the following css code and adjust the width value as necessary.
#commentform p.comment-form-email, #commentform p.comment-form-url, #commentform p.comment-form-author {
float: left;
margin-right: 30px;
width: 210px;
}
You may need to adjust the width on different screen sizes with css media queries.
Best regards,
Ismael
Ok.
Thanks for your support