Help removing List Style Image (Ul list css)

ThemeBurn SupportForumsOpenCart ThemesBurnEngineHelp removing List Style Image (Ul list css)

This topic has been marked as not resolved.

Hello,

I’d like to know how to remove the “>” that is displayed next to subcategories, please see attached image.

Please let me know?

Thanks

 

May 22, 2018 at 3:53 pm #64293

image

May 22, 2018 at 3:54 pm #64297

Hello,

Never mind I have managed to sort this with the below code in custom css:

}
ul.tb_list_1 > li:before {
color: #fff !important;
}

May 22, 2018 at 4:01 pm #64299

Hi,

The custom code you have used will remove the bullet from all lists. If you want to target only subcategories, then you can use:

.tb_subcategory .tb_list_1 > li:before {
  display: none;
}

BR,
ThemeBurn team

May 25, 2018 at 1:52 pm #64347
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.