
Originally Posted by
fsicody
last question, then i'm done cuz i need to smoke, how do i get rid of the gap between my banner and my links?
If you look at the SOURCE CODE of the home page, you will see (near the top):-
HTML Code:
<div id="navMainSearch"><form name="quick_find_header" action="http://flowsolutions1.com/test/index.php?main_page=advanced_search_result" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><input type="text" name="keyword" size="6" maxlength="30" style="width: 100px" value="Enter search keywords here" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';" /> <input type="submit" value="Search" style="width: 45px" /></form></div>
<br class="clearBoth" />
</div>
<!--eof-navigation display-->
The problem could be:-
HTML Code:
<br class="clearBoth" />
(effects a line break)
And to see if that IS the issue, do this:-
Go to:
includes\templates\template_default\common\tpl_header.php
Send a copy of tpl_header.php to your hard drive and open it for editing in a good plain text editor.
Around lines 64, 65, 66, you will see:-
PHP Code:
<div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
<br class="clearBoth" />
</div>
COMMENT OUT the <br class="clearBoth" />
<!--<br class="clearBoth" />-->
Save the file.
You now need to FTP it to:
includes\templates\classic\common\tpl_header.php
(If you don't have a folder in "classic" called "common", create one.)
See if this works. If not, you can UNDO the changes - or just delete the tpl_header.php in classic\common.
(This leaves the ORIGINAL in the template_default\common folder, which will then kick in.)