liquidvoyage Posted June 15, 2014 Share Posted June 15, 2014 I want to remove the quicksearch bar in the Top but i still want the cart block to remain on the right side of the Top section. How can this be done? Link to comment Share on other sites More sharing options...
PSfever.com Posted June 15, 2014 Share Posted June 15, 2014 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 More sharing options...
liquidvoyage Posted June 15, 2014 Author Share Posted June 15, 2014 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 More sharing options...
PSfever.com Posted June 15, 2014 Share Posted June 15, 2014 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 More sharing options...
liquidvoyage Posted June 15, 2014 Author Share Posted June 15, 2014 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 More sharing options...
PSfever.com Posted June 15, 2014 Share Posted June 15, 2014 Great to hear that! Could you please set the thread as solved? Link to comment Share on other sites More sharing options...
Recommended Posts