Jump to content

(SOLVED) removing left-hand chevrons/bullets from cms categories


Recommended Posts

It is in the file global.css, but is a general style for all the shop, if you want to change this, you can change it in the rule:

.rte ul {
  list-style-type: disc;
  padding-left: 15px; }

If you want to change only for the CMS pages, put all the content inside a div:

<div class="cms-page-content">
  //All you content here
</div>

And now add a new css rule in global.css:

.cms-page-content ul {
  /* your custom styles here */ }

I hope this help.

Link to comment
Share on other sites

This is nuts, I know I was able to do this on a previous version of prestashop 1.5.

 

Have tried everything I could think of in the following...

 

global.css

blockcategories.css

 

I use Safari, but haven't looked at the "develop" option tab and will try that and see if it has a similar feature like Chrome has.

 

Thank you again,

Jason

Link to comment
Share on other sites

Ok, in the global.css search for the rule:

.block .list-block li a:before {
  content: "\f105";
  display: inline;
  font-family: "FontAwesome";
  color: #333333;
  padding-right: 8px; }

Just comment the code inside or you can change the icon in the "content:"

Link to comment
Share on other sites

The code which changes the chevrons in the product categories box is here...

 

blockcategories.css

 

around line 87

 

#categories_block_left li li a:before {

      content: "\f105";
      font-family: "FontAwesome";
      line-height: 29px;
      padding-right: 8px; }
 
Please mark this topic as solved when you have the time,
 
thank you again!

Jason
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...