How to remove setting icon area on top right area?

I don’t need to change any color, language, currency settings, I want to competely remove this section, any quick tip?

4 answers

Profile photo of Sherlock 0.00 $tone October 24, 2013
Public

Hi mate,

you just open the file of app\design\frontend\default\jm_craftstemplate\pag e\html\header.phtml look for and remove or comment out this

HTML Code:

 <div id="ja-quicksetting" class="quick-setting has-toggle">
				<div class="btn-toggle quicksetting-toggle">
					<i class="icon-gear"></i><strong><?php echo $this->__('Quick Setting') ?></strong>
				</div>
				<div class="inner-toggle clearfix">
					<div class="setting-action">
						<?php echo $this->getChildHtml('store_language'); ?>
						<?php echo $this->getChildHtml('custom_currency_selector') ?>
						<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('colors')->toHtml() ?>
					</div>
				</div>
			</div>
#1
Profile photo of Saguaros 0.00 $tone August 21, 2014
Public

You can try going to file: /skin/frontend/default/jm_crafts/css/style.css

At approx line: 564

Code:

#ja-search {
    border-left: 1px solid #eee
    border-right: 1px solid #eee
    min-height: 60px;
    position: absolute;
    right: 179px;
    top: 0;
    width: 276px;
    z-index: 1000;
}

change it to:

Code:

#ja-search {
    border-left: 1px solid #eee
    border-right: 1px solid #eee
    min-height: 60px;
    position: absolute;
    right: 59px;
    top: 0;
    width: 276px;
    z-index: 1000;
}

Remember to flush magento cache then.

#3

This question is now closed

Written By

Comments