[Resolved] Custom badge for the Sticky Post

Home Forums Support [Resolved] Custom badge for the Sticky Post

Home Forums Support Custom badge for the Sticky Post

  • This topic has 3 replies, 2 voices, and was last updated 4 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #836058
    Hubner TANGUY

    Hello GeneratePress team/community,

    I’m trying to make appear a custom badge over the sticky post, does anyone have some tips/guideline on how to achieve that?

    Something such as in the image below:
    Sticky Post

    Thanks in advance πŸ™‚

    Ps. I LOVE how GP makes things easier. Well done! Elements hooks are a blessing.

    GeneratePress 2.2.2
    GP Premium 1.7.8
    #836071
    David
    Staff
    Customer Support

    Hi there,

    you could use some CSS like this:

    .blog .post.sticky {
        position: relative;
    
    }
    .blog .post.sticky:before {
        content: url("http://www.example.com/test.png");
        position: absolute;
        top: 0;
        left: 0;
    }

    Just need to create a PNG for your badge and set in your Content URL.

    #836316
    Hubner TANGUY

    Hello David,

    Alright, I have done that. Thanks for the quick help πŸ™‚

    Have a great day,
    Tanguy H.

    #836374
    David
    Staff
    Customer Support

    Awesome – glad to be of help πŸ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.