• So I am currently working on creating my own website for the first time ever. It will be a blog+. I am a total newbee to this but have come suprisingly far so far!

    Right now I am having trouble with something. I hope someone could help me out with this! Preferably in easy language hehe ?? Some CSS code would be great!

    My issue/wish:

    Is it possible to reduce the space between featured image, title, secondary title, date/category and excerpt when you’re on the blog page (so not within a singular post), and when you’re ‘inside’ the post?
    And is it possible to not show category, date, author and secondary title when you’re ‘inside’ the post?? I already have featured image off there; I just want to show the main title and the text.

    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    Try this please:
    – blog page

    .blog .hentry .meta-post {
        margin-bottom: 0;
    }
    
    .blog .hentry .title-post {
        padding-bottom: 0;
    }
    
    .blog .hentry .entry-header, .blog .content-area .entry-thumb {
        margin-bottom: 10px;
    }

    – single post

    .single .hentry .meta-post, .single .hentry .single-meta {
        display: none;
    }
    Thread Starter Anouk

    (@anouk197)

    Thanks so much! Only the secondary title is still shown inside a post. And is it possible to reduce the space between main title and secondary title on the blog page? That can’t be achieved with the CSS you gave me. For the rest it worked great!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘delete symbols date and category posts’ is closed to new replies.