Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi, there is a way (in formulate section) to configure labels to be hidden or I must use CSS?
Thanks
Yeah, you can hide it with CSS (there is no configuration option to hide labels). Something like this:
.formulate__field-label { display: none; }
Though, for accessibility reasons, you may want to instead do something a little more clever, such as one of these approaches:
Actually, I believe most (possibly all) Formulate fields use an aria-label attribute, so hiding the field labels with display: none should be fine (in terms of accessibility).
aria-label
display: none
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to hide labels
Hi, there is a way (in formulate section) to configure labels to be hidden or I must use CSS?
Thanks
Yeah, you can hide it with CSS (there is no configuration option to hide labels). Something like this:
Though, for accessibility reasons, you may want to instead do something a little more clever, such as one of these approaches:
Actually, I believe most (possibly all) Formulate fields use an
aria-label
attribute, so hiding the field labels withdisplay: none
should be fine (in terms of accessibility).is working on a reply...