Question

enter image description here

If you look at the image within header.phtml there is a white block and a blue block. I want to completely delete the blue block so I am left with one header containing all of my header elements, that I can change to any colour I wish.

How would I go about doing this?

Thanks

Was it helpful?

Solution

If you want to remove that block completely then you should copy template/page/html/header.phtml from rwd to your theme and then remove following lines:

<?php echo $this->getChildHtml('topLinks') ?>
<?php echo $this->getChildHtml('accountLinks') ?>
<?php echo $this->getChildHtml('currency') ?>
<?php echo $this->getChildHtml('store_language') ?>

This will make sure these blocks are not called.

Hope this helps.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top