
Originally Posted by
roylen1
I figured it out as follows:
To remove language, currency and cart from header (template monster template)
1. edit stylesheet_tm.css in 'includes\templates\YOUR TEMPLATE\css'
2. "display:none;" as the last parameter in
- ".header .lang-header {"
- " .header .curr-header {" and
- ".header .cart-header {"
To add the search header box
- Copy the entire '.cart-header' section (5 lines)
- rename '.cart-header' in each line to '.cart-search'
Edit 'includes\templates\YOUR TEMPLATE\common' and add
<div class="search-header"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
between <?php #HEADER LINKS END ?> </div>
and <div class="curr-header"> <?php #HEADER CURRENCIES START ?>
That's it