Page 1 of 1

Moving the Cart

Posted: Wed Jul 24, 2013 5:01 pm
by chapster5
Hi guys,

I am building an opencart shop and have moved the cart from the top of the header to the bottom of the header but it has screwed up the mini cart inside. How can I fix this? Heres what it's doing:

So I have moved it to here:

Image

and when you add products and click on the cart to see what's in it... it does this:

Image

What do I need to change/set?

Re: Moving the Cart

Posted: Wed Jul 24, 2013 5:07 pm
by chapster5
Never mind... I changed

#header #cart {
position: absolute;
top: 0px;
right: 145px;
z-index: 9;
min-width: 300px;
}

to

#header #cart {
position: absolute;
bottom: 5px;
right: 145px;
z-index: 9;
min-width: 300px;
}

and it screwed it royally.