Issue with header in theme Issue with header in theme
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Issue with header in theme

Started by wannieb, July 11, 2006, 01:41:01 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

wannieb

I am having issue with the header section in my theme, I have a search facility within the header for the main site and the form it is in called "SearchForm". The problem is with the search button.

html coding
********
<td width="118" align="right" valign="top" class="search"><form name="SearchForm" method="post" action="/cgi-bin/htsearch">
    <input type="text" name="words" id="searchinput" size="10" maxlength="50"><input type="hidden" name="exclude2" value=""><input type="hidden" name="restrict" value=""><input type="hidden" name="config" value="worldn"><input type="hidden" name="format2" value="builtin-long"><input type="hidden" name="sort" value="score"><input type="hidden" name="exclude" value="">
    <input type="submit" name="submit" value=">>" id="searchbut"> 
    </form></td>
*******

It is the "<input type="submit" name="submit" value=">>" id="searchbut">" which I have the problem with. In my normal pages and if I view the header file on its own the value">>" looks the right size, however when viewing the header file in the gallery it is different smaller. I can not see anything which could be interferring in it.

Any suggestions

Sami

this is CSS issue your theme has a CSS entry for input tag
you should edit that entry or add a style properties to your input tag of search form
a direct link to your issue would be helpful
‍I don't answer to PM with support question
Please post your issue to related board

Joachim Müller

Try<input type="submit" name="submit" value="&raquo;" id="searchbut" />or<input type="submit" name="submit" value="&gt;&gt;" id="searchbut" />
Not related to Coppermine though, but an html basic: you need to escape < and > to make them not be mistaken by the browser for tag start and end delimiters.