Jump to content

[SOLVED] Shopping basket fading away


Recommended Posts

  • 3 months later...

you've got simple css problems

position of you cart is default, you added there banner (top) and it's because of this.

 

change top param to 215px, like i show below:

#header #cart_block {
z-index: 10;
display: none;
position: absolute;
right: 0;
top: 215px;
height: auto;
width: 200px;
-moz-border-bottom-right-radius: 3px;
-moz-border-bottom-left-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
box-shadow: 0 1px 0 #C6C6C6;
background: #eee;
}

moreover your cart is inside bloc ktop menu div, this is why it looks so weird. remove it from this div and will be ok:
ZcOw0Ub.png

Link to comment
Share on other sites

Hi Vekia,

 

Thanks for your response.

 

I have changed the param to 215px and it worked fine in terms of the position of the cart drop display..

 

However the FONT of the product is still looking funny at the moment (as attached in the picture)

 

Any thoughts?

 

Thanks

Ian

 

post-477592-0-53607400-1388939964_thumb.jpg

Edited by [email protected] (see edit history)
Link to comment
Share on other sites

it's because it's still inside block top menu. you have to move it from this block.

 

go to modules > positions

search for "displayTop" modules list

 

then move "block cart" module to the top of the list (just change position with arrows or with drag'n'drop feature)

Link to comment
Share on other sites

×
×
  • Create New...