seems like it's not rendered somehow... ? I've attached a picture just to make it clearer..

And would it be possible for labels not being part of the requirements when adding components? If it's not then okay since one could always hide it using CSS.

CommentFileSizeAuthor
missing_markup_label.jpg52.97 KBass45sin

Comments

quicksketch’s picture

Markup elements don't have titles in Drupal, afaik. Nor do they have the <div class="form-element"></div> wrapper around them, both the label and wrapper are added by theme_form_element, which markup elements are exempt from. If you need the label, you can emulate it by entering in all the HTML for a label:

<div class="form-element">
<label>My label:</label>
Some text
</div>
ass45sin’s picture

Status: Active » Closed (fixed)

Ah.. okay then.. I thought it was a bug.. thanks quicksketch for the quick answer :)) Appreciate it

Ed