Changing the Contact Form in Beez5 - Joomla! Forum - community, help and support
hi
i chose use beez5 template, based on number of accessibility features required site. creating site blind community, , require website view correctly in number of text-based browsers, notably lynx.
currently, of site works well, have had request have label , input box of contact form appear on same line. have @ of code, , know not idea mess around core joomla! code, need make change.
i see form defined follows:
<fieldset>
<legend><?php echo jtext::_('com_contact_form_label'); ?></legend>
<dl>
<dt><?php echo $this->form->getlabel('contact_name'); ?></dt>
<dd><?php echo $this->form->getinput('contact_name'); ?></dd>
<dt><?php echo $this->form->getlabel('contact_email'); ?></dt>
<dd><?php echo $this->form->getinput('contact_email'); ?></dd>
<dt><?php echo $this->form->getlabel('contact_subject'); ?></dt>
<dd><?php echo $this->form->getinput('contact_subject'); ?></dd>
<dt><?php echo $this->form->getlabel('contact_message'); ?></dt>
<dd><?php echo $this->form->getinput('contact_message'); ?></dd>
...etc.
</fieldset>
any suggestions how can contact form label (the <dt> part) appear if on same line form input (the <dd> part)? know nothing php @ all!
the link contact page of site listed here: http://sa-note.com/contact-us
thanks in advance!
nick
i chose use beez5 template, based on number of accessibility features required site. creating site blind community, , require website view correctly in number of text-based browsers, notably lynx.
currently, of site works well, have had request have label , input box of contact form appear on same line. have @ of code, , know not idea mess around core joomla! code, need make change.
i see form defined follows:
<fieldset>
<legend><?php echo jtext::_('com_contact_form_label'); ?></legend>
<dl>
<dt><?php echo $this->form->getlabel('contact_name'); ?></dt>
<dd><?php echo $this->form->getinput('contact_name'); ?></dd>
<dt><?php echo $this->form->getlabel('contact_email'); ?></dt>
<dd><?php echo $this->form->getinput('contact_email'); ?></dd>
<dt><?php echo $this->form->getlabel('contact_subject'); ?></dt>
<dd><?php echo $this->form->getinput('contact_subject'); ?></dd>
<dt><?php echo $this->form->getlabel('contact_message'); ?></dt>
<dd><?php echo $this->form->getinput('contact_message'); ?></dd>
...etc.
</fieldset>
any suggestions how can contact form label (the <dt> part) appear if on same line form input (the <dd> part)? know nothing php @ all!
the link contact page of site listed here: http://sa-note.com/contact-us
thanks in advance!
nick
reviewed site referenced , found has been structured way want. hope have made changes.
you need not change core code directly. create overriding code documented @ http://docs.joomla.org/how_to_override_the_output_from_the_joomla!_core.designlogik wrote: know not idea mess around core joomla! code, need make change.
Comments
Post a Comment