We need to see your site live to give the best answers to your questions.
You want to remove the gap below the header/logo.
What do you want to do with the sidebox heading? remove the part in [brackets]?
We need to see your site live to give the best answers to your questions.
You want to remove the gap below the header/logo.
What do you want to do with the sidebox heading? remove the part in [brackets]?
Hi, sorry for poor explanation.
I want to remove white gap under header.
Also as u can see at image above one of the right sideboxes stil has litle grey line under it, i want to remove it too.
Tnx in advance
Site: www.explicitclothing.nl/exc
The gray line is not under the heading; it is the heading background repeating because the title takes two lines.
Find in your stylesheetand addCode:.leftBoxHeading, .centerBoxHeading, .rightBoxHeading { margin: 0em; background-color: tranparent; background-image: url(../images/tile_back.gif); padding: 0.5em 0.2em; }
background-repeat: repeat-x;Code:.leftBoxHeading, .centerBoxHeading, .rightBoxHeading { margin: 0em; background-color: tranparent; background-image: url(../images/tile_back.gif); background-repeat: repeat-x; padding: 0.5em 0.2em; }
The header gap is caused by a <br class="clearBoth"> after the "branding display" code in /includes/templates/your_template/common/tpl_header.php. Replace that with
<div class="clearBoth"></div>
and the gap will close up.