badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Slash between categories

#67120

Hi @rebelsnotes,

To add “/” between the categories then please go to Appearance > Customize > Additional CSS and paste the below custom css code.

.entry-meta.category-meta .cat-links a {
    margin-right: 4px;
}
.entry-meta.category-meta .cat-links a:before {
    content: "/ ";
}
.entry-meta.category-meta .cat-links a:hover:before {
    text-decoration: none;
}
.entry-meta.category-meta .cat-links a:first-child:before,
.post-block .entry-meta.category-meta .cat-links a:before,
.post-img-wrap .entry-meta.category-meta .cat-links a:before {
    display: none;
}

Thank you!