Jump to content



Latest News: (loading..)

punkrockcds.com

Member Since 09 Feb 2006
OFFLINE Last Active Nov 11 2012 05:58 PM
-----

Topics I've Started

tep_draw_input_field Height

18 October 2012 - 12:29 PM

How do you change the height of the input fields? I can change the length by doing tep_draw_input_field('firstname' , '', 'size="30"') but can't figure out how to alter the height of the box. Any ideas?

Height of Search Box

17 August 2012 - 11:26 PM

I have a search box in my header (see code below). Does anyone know how I can change the height of the box? (ie. where you actually enter the text) The width is fine just need to increase the height.

Any help greatly appreciated as always.

Cheers,
Mark.

 
<TABLE BORDER="0" cellpadding="0" CELLSPACING="5" class="header" align="center">
<TR>
		  <tr class="header">
<TD WIDTH="950" HEIGHT="30" BACKGROUND COLOR="#000000" td align="left" valign="middle">
<?php echo tep_draw_form('search', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get') . tep_draw_input_field('keywords', '', 'size="10" maxlength="30" height="55" style="width: ' . (BOX_WIDTH+570) . 'px"') . ' ' . tep_image_submit('button_quick_find.gif', IMAGE_BUTTON_SEARCH, 'align="center"') . '</form>'; ?>
</TR>
</TABLE>