Jump to content

Top cartblock position?


Recommended Posts

Hi,

 

if you're talking about Prestashop's default theme, then you will need to add new class in themes/default-bootstrap/modules/blockcart/blockcart.tpl.

The class name is pull-right so in the end, the code will look like this

<div class="col-sm-4 clearfix pull-right">
....
....
</div>
Link to comment
Share on other sites

 

Hi,

 

if you're talking about Prestashop's default theme, then you will need to add new class in themes/default-bootstrap/modules/blockcart/blockcart.tpl.

The class name is pull-right so in the end, the code will look like this

<div class="col-sm-4 clearfix pull-right">
....
....
</div>

yes im using the default theme. Can you be more specific where these lines go?

Link to comment
Share on other sites

yes im using the default theme. Can you be more specific where these lines go?

Well, I wrote you the entire URL...it doesn't get anymore specific.

 

This is the line that you want to change. Approx. #27

<div class="col-sm-4 clearfix{if $PS_CATALOG_MODE} header_user_catalog{/if}">

This is what the modification will look like:

<div class="col-sm-4 clearfix pull-right{if $PS_CATALOG_MODE} header_user_catalog{/if}">

Hope it helps :-)

Link to comment
Share on other sites

Well, I wrote you the entire URL...it doesn't get anymore specific.

 

This is the line that you want to change. Approx. #27

<div class="col-sm-4 clearfix{if $PS_CATALOG_MODE} header_user_catalog{/if}">

This is what the modification will look like:

<div class="col-sm-4 clearfix pull-right{if $PS_CATALOG_MODE} header_user_catalog{/if}">

Hope it helps :-)

Thanks it worked like a charm!

 

Wasnt sure if i just needed to add a line or change something :)

Link to comment
Share on other sites

×
×
  • Create New...