Jump to content

[SOLVED] Cart summary buttons in wrong position


LukeH

Recommended Posts

Hi,

When on the Summary page of shopping cart the 'Next >>' and '<
Can someone advise me which file I need to modify to alter the button positions ?

I use Firebug to troubleshoot but I can't figure out which PrestaShop file is responsible for the cart summary page.

Thanks,

Luke.

Link to comment
Share on other sites

It would be easier to help with a link to your site or a screenshot of the problem. Those buttons are at the bottom of shopping-cart.tpl in your theme's directory.


Picture attached.

The Continue shopping button should be bottom-left and next button should be bottom-right. It is fine on the other pages.

29456_EkEUkQ4gQvepV4r0xM6a_t

Link to comment
Share on other sites

Add clear:both; to global.css (line 1924)

p.cart_navigation {
clear:both;
padding:1em 0 !important;
}



Thanks - That fixed the button location but the Delivery/Invoice address table is left justified and needs to be centred.

Any ideas?

Luke.
Link to comment
Share on other sites

Add this to global.css

.order_delivery{
margin:0 auto;
width:545px;
}



Also you could add margin to

div.addresses {
background:none repeat scroll 0 0 #F8F8F8;
border:1px solid #E6E6E6;
margin:0 auto;
padding:0.6em;
position:relative;
width:544px;
}


global.css (line 2390)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...