Advertisement
roxcoder

Search icon change from corporex joomla template

Oct 16th, 2015
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. ?php
  2. /**
  3.  * @package     Joomla.Site
  4.  * @subpackage  mod_search
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  8.  */
  9.  
  10. defined('_JEXEC') or die;
  11. ?>
  12.  
  13. <div class="search">
  14.     <form action="<?php echo JRoute::_('index.php');?>" method="post">
  15.         <input name="searchword" class="input-block-level" id="mod-search-searchword" type="text" placeholder="<?php echo $text; ?>" />
  16.         <input type="hidden" name="task" value="search" />
  17.         <input type="hidden" name="option" value="com_search" />
  18.         <input type="hidden" name="Itemid" value="0" />
  19.         <button class="btn-top-search" onclick="this.form.searchword.focus();">
  20.             <!-- For change icon of search -->
  21.             <i class="icon-search"></i>
  22.         </button>
  23.     </form>
  24. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement