Hi, I have a template which is built on the above version. Now, IBP says it has html errors and I am currently trying to fix the following error:
Line 171, Column 199: there is no attribute "BORDER"
…images/buttons/english/go.gif" border="0" alt="Search" title=" Search " class…
I have spotted this line in templates/mytempl/boxes/search.php
Code:
$info_box_contents = array();
$info_box_contents[] = array('form' => tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get'),
'align' => 'left',
'text' => '
<br style="line-height:8px">
' . BOX_SEARCH_TEXT . '<br>
<br style="line-height:8px">
<div class="vam">' .tep_draw_input_field('keywords', '', 'size="10" maxlength="30" class="input_search"') . '<br><br> ' . tep_hide_session_id() . tep_template_image_submit('go.gif', BOX_HEADING_SEARCH, ' class="button_search">' . "</div"));
My Question: I understand BOX_HEADING_SEARCH determines the alt value. I am not able to understand where the border ="0" is set. Can anyone please help.