Go & Search Buttons

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
eddron
Rank 2
Rank 2
Posts: 14
Joined: October 22nd, 2007, 8:03 pm

Go & Search Buttons

Post by eddron »

Hi. I'm using version 3.2.1.(and loving it!).
Does anybody know how to totally remove the "Go" button and its functionality from the design? I want to simplify the interface and think Search would be good enough. What piece(s) of code would I need to take out to totally get rid of "Go"?

In GuMax.php is this the only code I need to remove?

Code: Select all

<input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('searcharticle') ?>" />
Are there any other files or code I need to remove?
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Go & Search Buttons

Post by Paul »

Yes, there are two lines, remove one of them (first one is Go, second one is Search).
:lol:

or another easy way to do it is in CSS, add this is the gumax_orange.css:

Code: Select all

    #gumax-p-search form #searchGoButton{
        display: none;
    }
User avatar
eddron
Rank 2
Rank 2
Posts: 14
Joined: October 22nd, 2007, 8:03 pm

Re: Go & Search Buttons

Post by eddron »

Thank you. :-)
Post Reply