I enlarged the text, now how to enlarge the box.
I want to enlarge the search box so that the enlarged text does not get cut off.
Where is this defined?
Thanks!
I enlarged the text, now how to enlarge the box.
I want to enlarge the search box so that the enlarged text does not get cut off.
Where is this defined?
Thanks!
It appears the Search "button" may be an image. Searched all the image folders and did not find anything defined as search button. using 1.3.9h
Still looking.
Make a copy of your tpl_search_header.php file in the sideboxes of the default_templates
Paste it in the includes/templates/YOUR_TEMPLATE/sideboxes folder
Change line 19 at the beginning of the line
$content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" style="width: 100px" value="'
with
$content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" id="searchTop" value="'
Add to your stylesheet
input#searchTop {
width: 120px;
height: 2em;
}
Height, and width according to your needs
That worked great for the keyword search box. Thank you!
I am still confused on the search "button"
I am close but the references to "image" in the php search make me think there should be an image of the button somewhere.
Not true?
if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes')
(BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON);
Can you give a link to the site please?
In the meantime you can look here:
http://www.zen-cart.com/forum/showthread.php?t=172249
version 1.3.9h
http: //www.naicsfurniture.com
Thanks!
Check the link on my post #6.
Doesn't look like you are using CSS Buttons. Try looking at :
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_search_header.php
For mine, it was on line 19. Look for style="width: 75px" and change as needed.
Hope this is what you are looking for...