If you are submitting an issue for the Joomla! CMS, please submit it at https://github.com/joomla/joomla-cms/issues/new instead. You may remove this line from the issue template.
the default_form.php have this unnecessary code in the line 25:
<?php if (isset($fieldset->label) && ($legend = trim(JText::_($fieldset->label))) !== '') : ?> <legend><?php echo $legend; ?></legend> <?php endif; ?>
Legends title "Send a Form" is annoying and unnecessary (since Joomla 1.0)
in default.php have this unnecessary code in the line 113:
<?php elseif ($presentation_style === 'plain') : ?> <?php echo '<h3>' . JText::_('COM_CONTACT_EMAIL_FORM') . '</h3>'; ?>
this h3 title in plain form is annoying and unnecessary (since Joomla 1.0)
Labels |
Added:
?
|
Category | ⇒ | com_contact Feature Request |
Status | New | ⇒ | Discussion |
I am using this solution: override the template code from com_contact/contact.
If the case is to maintain this feature I suggest to add an option to show/hide in the xml forms.
The <legend>
is fine imho. If you don't like it, there are two possible solutions beside creating an override.
#contact-form legend {
display: none;
}
As for the <h3>
, we could add a CSS class to it, so it can be targetted with CSS and hidden if someones wants to. But removing it is imho wrong.
This is a matter of opinion and as it can be addressed in a template override I am closing this
Status | Discussion | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-08-03 09:49:25 |
Closed_By | ⇒ | brianteeman |
Thanks for Request. I guess a Language Override isn't a Solution?
This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/16759.