Thank you, this is what I've added in main.css:
Code:
#header .head-bg2 {
height: 100px;
position: relative;
background-color: #ffffff;
}
#header .head-bg2 .cart-container {
width: 160px;
height: 100px;
position: absolute;
top: 0px;
right: 5px;
}
#header .cart-block {
background-color: #ffffff;
width: 160px;
right: 5px;
height: 100px;
position: absolute;
top: 0px;
}
And this is what I've added in head.tpl:
Code:
<div class="line1">
<div class="logo">
<a href="{$catalogs.customer}/home.php"><img src="{$ImagesDir}/xlogo.gif" alt="" /></a>
</div>
<div class="cart-container">
<div class="cart-block">
{include file="customer/menu_cart.tpl" }
</div>
</div>
{*include file="customer/phones.tpl"*}
</div>
Do you think I need 2 classes for this purpose, cause I kind of think I don't need the first one. The cart looks good on all browsers, except IE6 of course... Now I need to edit the minicart panel itself... Thanks pal!