Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #330935

    Hi. I have a very small blog post at the bottom of my page here:

    http://lbartisan.com/fitrats.com/fitness/chicago-fit-life/

    1.I want to make the small image of the rat paws have NO lightbox. I saw some posts about how to do this with big images and I tried this:

    .postid-3447 .small-preview {
    pointer-events: none!important;
    }

    But It didn’t work.

    2. I want to remove the date. But only from this post and other specific posts.

    Thanks!

    Lizy

    #330938

    Hi lizybloom!

    Please add following code to Quick CSS

    .blog-meta {
    pointer-events: none;
    }
    .post-3447 span.post-meta-infos {
    display: none;
    }

    You can inspect elements to post id – http://i.imgur.com/1LTChnf.png

    Best regards,
    Yigit

    #330984

    Hey thanks!

    One problem, the overlay little pencil is still there on the small image. Can we remove that?

    Thanks

    #331444

    Hey!

    Please use this:

    .rounded-container .iconfont, .small-preview .iconfont {
    display: none;
    }

    If you want to remove the background, use this:

    .main_color .small-preview {
    background: transparent;
    }

    Regards,
    Ismael

    #331654

    Perfect! Thanks so much!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Custom Blog styling’ is closed to new replies.