• Resolved structuralpergolas

    (@structuralpergolas)


    Hello,

    My site is (https://centerforallergy.com) and I am looking to remove the “Post Date” bubbles that appear above the posts on the home page blog.. If you have any insight as to where in the code this issue may lie, please comment below to help me out!!

    Have a great day WebDevs,

    Justin

Viewing 6 replies - 1 through 6 (of 6 total)
  • search for div.entry-thumbnail.clearfix in your stylesheet and add display: none; to it.

    or just add this to your css file and it should work:

    div.entry-thumbnail.clearfix {
       display: none;
    }

    Hi Justin….Actually, to remove the date box (bubble), you would do this:

    .entry-date-box {
    display:none;
    }

    But doesn’t that leave a empty space above @StyledThemes? You don’t need that clearfix if you’re removing the date box?

    @nicholas….the method I posted will remove that date box, but if one doesn’t want the extra space, then an adjustment to the .entry-thumbnail bottom margin can be adjusted to be less than 50px. Your method removes not only the date, but also the featured image (if one is used).

    Oh, I understand.. my bad ??

    No worries Nichlas (which I just noticed I spelled your name wrong in the previous post…oops.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove Post Date’ is closed to new replies.