Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1166193

    Hello,

    May anyone suggests how to add a border to single post images, please?

    Thanks in advance!

    J.N.

    #1166278

    Hey greyhound72,

    Could you post a link to where we can see the elements in question please? Also please point out which images in specific you would like to add a border to.

    Best regards,
    Rikard

    #1166279

    Hello Rikard,

    Here: https://www.kaltra.at/single-post/2019/11/18/r32-scroll-chillers

    I need to add a border to the image, there are only one image on the page, a big one.

    Regards,
    J.N.

    • This reply was modified 4 years, 11 months ago by greyhound72.
    #1166344

    Hi,

    Thanks for that, though it looks like you have already added code for that:

    .big-preview img {
        border-radius: 4px!important;
        border: #eaeaed 1px solid!important;
    }

    I can’t see exactly where that code is coming from since you have file compression active.

    Best regards,
    Rikard

    #1166355

    Yes, looks like my quick css works, it was:

    .small-preview img {
    border-radius: 4px!important;
    border: #eaeaed 1px solid!important;
    }

    .big-preview img {
    border-radius: 4px!important;
    border: #eaeaed 1px solid!important;
    }

    Another issue is that, on mobile, the blogpost image is right-padded 50px, while the post text has no right padding. Could you please suggest how to remove that image padding (on mobile only!)?

    Thanks!

    J.N.

    • This reply was modified 4 years, 11 months ago by greyhound72.
    #1166413

    Hi,

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 768px) {
    .big-preview.single-big {
        padding: 0 0 10px 0;
    }}

    Cheers!
    Yigit

    #1166772

    Thanks! It works!

    And one more question: is it possible to show featured pictures on mobile, on main blog page? By default, pictures are suppressed, either small or big preview.

    Thanks,
    J.N.

    #1166994

    Hi,

    Add this to quick css:

    @media only screen and (max-width: 767px){
    .responsive .template-blog .blog-meta{
    display:block!important;
    }}

    Best regards,
    Jordan Shannon

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