Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #10758
    feinschmuck
    Member

    dear sirs, please be so kind to provide me with the right code to insert to hide the category above a post and also the meta info below it.

    like this:
    Posted on 5. Juni 2013 under in Anhänger, Bronzezeit | By admin. |

    thanks a lot!

    #10801

    I use the following CSS code in the style.css for my child theme.

    /* Remove blog post metadata*/
    .entry-header .entry-meta { display: none ;}
    
    /* Remove featured image from single blog page*/
    .single .featured-image { display: none ;}
    
    /* Remove blog category*/
    .in-category { display: none ;}
    
    /* Remove line from under blog post*/
    .site-content article {
        border-bottom: 0px solid;
        word-wrap: break-word;
        -moz-hyphens: auto;
    }
    
    /* Remove the post navigation links*/
    .nav-next { display: none ;}
    .nav-previous { display: none ;}

    I hope this helps.

    #10819
    Sakin
    Keymaster

    @danielfawcett: thanks for your help. Yes, the best way to customize the CSS is by building child theme and adding new css in child them style.css or if you only have few css to change then you don’t need to build child theme. You can just add the custom css in “Appearance => Theme Options => Custom CSS” box.


    @feinschmuck
    : Can you check it that works for you. If it’s not working, then share your site URL and will check in detail.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘hide category and meta info like author date …’ is closed to new replies.