Ticket for: Breadcrumb
0
Andrey
Hello! I need to mark current link in breadcrumb - how to do this?
2 Subscribers
Submit Answer
1 Answers
Best Answer
0
Welcome to our forum.
You can use the following CSS to apply
/*li tag*/
.breadcrumb-container li:last-child {
}
/*a tag*/
.breadcrumb-container li:last-child a{
}
/*span tag*/
.breadcrumb-container li:last-child a span {
color: #f00;
}
Regards 