how to style active or current item in breadcrumbs

Ticket for: Breadcrumb
0
how to style active or current item in breadcrumbs 1
Andrey
Jul 01, 2019 04:40 PM 1 Answers
Member Since Jul 2019
Subscribed Subscribe Not subscribe
Flag(0)

Hello! I need to mark current link in breadcrumb - how to do this?

2 Subscribers
how to style active or current item in breadcrumbs 1
how to style active or current item in breadcrumbs 3
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
how to style active or current item in breadcrumbs 4
PickPlugins
Jul 01, 2019
Flag(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

Sign in to Reply
Replying as Submit