I have a search form set up with two Cascading Dynamic Fields and a submit button.
I tried to turn off the labels on these ("Makes" and "Models") by selecting the seb_css3 variation, pressing the "+" and choosing No for "Show Labels" in the Field Section, but the labels still appear.
I have Horizontal display set.
I'm using the seb_minima template.
My override (for the moment) is simply to render the three fields like this:
<?php
// No Direct Access
defined( '_JEXEC' ) or die;
?>
<?php echo $cck->renderField('veh_make'); ?>
<?php echo $cck->renderField('veh_model'); ?>
<?php echo $cck->renderField('button_submit'); ?>
I apparently have missed something here, can someone tell me where the real control is for displaying or not displaying labels?
Would there be an alternative to the renderField in the case of the cascading dynamic select to accomplish that?
Development site is http://www.mavenmotors.com/res
The link in question is search by make/model under development.
Thanks!