• Resolved pmelcher

    (@pmelcher)


    Hi,
    is there a way to not display the categories under the Titles ?
    Thanks !

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Brian Harris

    (@zgani)

    Currently that option is not available.

    If you use a child theme, a custom CSS plugin or Jetpack you can add the following CSS code to remove the category links.

    .home .site-content article .cat-links {
        display: none;
    }

    However this will only remove the category from the home blog feed. To remove it from single view, archives and searches then use…

    .site-content article .cat-links {
        display: none;
    }

    To remove it from the Featured slider/grid then omit the .site-content part of the code.

    Hope that helps.

    Regards,
    Zulf

    Thread Starter pmelcher

    (@pmelcher)

    great. Thanks !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Categories display’ is closed to new replies.