Show only title of post

  • Anonymous

    #6810

    Hey,

    When I post something and I view the category where to I posted it, you’ll see this:

    screenshot104nu.png

    Is it possible to only show the title of the message (and the author of the post if possible).

    Many thanks in advance,

    Thibault

    Anonymous

    #35705

    Add this to Custom CSS.

    .category .entry-content, .category .entry-footer {
    display: none;
    }

    Anonymous

    #35706

    Awesome !

    Thank you so much !

    Anonymous

    #35707

    And how can I choose to only display the posts of the category ‘Games’ as a title only?

    Many thanks in advance !

    Admin

    Syahir Hakim

    #35708
    .category-games .entry-content,
    .category-games .entry-footer {
    display: none;
    }

    Anonymous

    #35709

    Great ! 😀

    Anonymous

    #35710

    Oh but when I try that, the title of the post is displayed but when I click the title, my post istn’t displayed.

    Admin

    Syahir Hakim

    #35711

    Try this:

    body.category-games .entry-content,
    body.category-games .entry-footer {
    display: none;
    }

    Anonymous

    #35712

    Very nice !

    And how about only show te title of a post in a page? (yeah sorry, I have a lot of questions :p)

    Many thanks!

    Admin

    Syahir Hakim

    #35713

    Each post and page has specific classes that you can use to target the elements on that post and page only, like what the codes above achieved. You can figure this out very easily using the Firebug add-on for Firefox, or the developer tools that come standard with Firefox, Chrome, and newer versions of IE.

    if you’re not familiar with CSS coding, I suggest invest some time to learn it. It’ll save you a lot of time and frustration in the future. This page might be of interest to you: https://forum.graphene-theme.com/graphene-support/beginners-resources-possible-sticky

Viewing 10 posts - 1 through 10 (of 10 total)

  • You must be logged in to reply to this topic.