• Resolved KimbWordPress

    (@kimbwordpress)


    How can I hide category names from above/below post titles, but still have the categories function? I tried a plug-in but it wouldn’t install.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can add this code to your child style.css or if you are not using a child theme, add it with the Custom CSS plugin:

    .archive-title, .page-title {
        display: none;
    }
    Thread Starter KimbWordPress

    (@kimbwordpress)

    That didn’t work, but it provided me with the clues to go here and get it to work, so THANKS SO MUCH!!!:

    }

    .featured-content .cat-links {
    font-weight: 700;
    display: none;
    }

    For anyone else that stumbles on this, I wanted to remove two things, the category link (so people can click on that category and see other posts in that category) and also the archive/breadcrumbs.

    The featured content one didn’t work for me, but the first one helped get rid of the archive part.

    Then, I went to Entry Meta section and added the “display: none” at the bottom (see below). Now I have no breadcrumbs an no category links. Just the title and date.

    .cat-links {
    font-weight: 900;
    text-transform: uppercase;
    display: none;

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Twenty Fourteen Remove Category Names above Titles’ is closed to new replies.