Get rid of date stamp on singl theme

  • Unknown's avatar

    how do I get rid of a date stamp on Singl Theme?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, I could not find the date stamp or time stamp on your site. Let me know where I can find it and I’ll help.

    But in any case, here’s the simple solution. Find the element which contains the date stamp / time stamp. Check what ID or class it has.

    And just apply the following property to it.

    display:none;

  • Unknown's avatar

    I put it back on there I replaced it with a period at first. It was right beside the “leave the comment” link. Where do it apply that property though? It doesn’t seem to work in my CSS.

  • Unknown's avatar

    I used inspect element for your site code and added the display:none; as inline CSS code.

    <div class="entry-meta" style="
        display: none;
    ">
        <a href="https://futadabeast.com/2016/05/30/stream-o-w-e/" rel="bookmark" title="5:54 pm">May 30, 2016</a>
    
        <span class="comments-link">— <a href="https://futadabeast.com/2016/05/30/stream-o-w-e/#respond">Leave a comment</a>
        </span>
    
    </div>

    But this takes away the “leave a comment” link as well because it’s wrapped inside the division class called “entry-meta”

    I would suggest to try adding this piece of code in your style.css. Probably at the very bottom and somewhere you can find it to change it again in case it doesn’t work.

    .entry-meta a { display:none; }

    The idea is “the division (with class entry-meta) containing an anchor tag (a) should have display none property”

    I hope it works!

  • Unknown's avatar

    Where do I paste it in? I tried my custom css but that doesn’t work. And thanks I want to get rid of the comment section too.

  • Unknown's avatar

    Never mind I figured it out. Thank you.

  • Unknown's avatar

    I thought it did but it didn’t :(

  • Unknown's avatar

    umm, try this in custom css

    .entry-meta {
    display: none !important;
    }

  • The topic ‘Get rid of date stamp on singl theme’ is closed to new replies.