03/10/2016 at 10:43 am
#368553
Keymaster
@ Ed
re: I would like to remove the ‘Select Category’ drop down menu
To do this, you will need to make a couple changes to the code from the QuickTip.
- Remove
$category = cnTemplatePart::category( $atts ); - Change this line:
$replace = $formOpen . $category . $search . $formClose;to this$replace = $formOpen . $search . $formClose;
re: widen the ‘Search’ box to about two times its current width.
You can do this using CSS. Add the following to the theme’s custom CS area:
input#cn-search-input {
width: 280px !important;
}
Hope that helps!
