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*

Add symbol on categories

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #96648
    ozbucakyunus
    Participant

    Hi, I want to separate the categories by adding the “>” symbol to my site where I show it. How can I do that.

    https://www.hizliresim.com/1n0l8iw

    #96716

    Hi there,

    First of all go to Appearance > Customize > Additional CSS and paste below custom CSS code:

    .entry-meta .cat-links span {
        font-weight: 700;
        margin-right: 7px;
        float: left;
    }

    after that now go to theme main directory template-parts > content.php on line no: 39 there you will see below line of code:

    <div class="cat-links"><?php the_category(' '); ?></div>

    replace above code with below one:

    <div class="cat-links"><?php the_category('<span>></span>'); ?></div>

    Note: We recommended you to create a child theme for customizing the theme main code so that the customization code won’t lost whenever you update the theme to the new version.

    Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.