XF 2.0 Have you removed breadcrumb style properties?

3rd AnGle

Well-known member
Hello XF,

I am unable to find style properties for breadcrumb. Can you guide me where i can find it?

Objective:
  1. to change color
  2. to add margin-top
 
use this in you extra.less

.p-breadcrumbs {

margin-top: 0px;
}

what color are you referring to? font color. I have not tried it but try this i hope it works.

.p-breadcrumbs>li a {

color: #0;
}

replace the 0 with your value for both codes.
 
use this in you extra.less

.p-breadcrumbs {

margin-top: 0px;
}

what color are you referring to? font color. I have not tried it but try this i hope it works.

.p-breadcrumbs>li a {

color: #0;
}

replace the 0 with your value for both codes.
Thanks for your help. I already added the margin top in the template but was hoping to find a better solution in terms of style properties.

I always thought breadcrumb had a separate style properties in xf1, hence why
 
Top Bottom