We're merging with GenerateBlocks! Learn more here.

[Resolved] Images problem in Firefox

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Images problem in Firefox

  • This topic has 6 replies, 2 voices, and was last updated 7 years ago by Tom.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #743
    Nikola
    Participant

    If I set image width/height in the image setting both featured post image and other post images are the same size. But I would like featured post image to be bigger, and it works perfect if I leave settings empty, but only for Chrome and IE. In Firefox there are no thumbs but all pictures are shown in the original size.

    So is there any solution to set featured post image dimension separately so this could look nice in Firefox as well?

    Thank you.

    #745
    Nikola
    Participant

    I fixed it with:

    .wp-show-posts-columns .featured-column .wp-show-posts-image {
        width: 466px;
        height: 262px;
    }

    for featured post image, and:

    .wp-show-posts-columns .wp-show-posts-image {
        width: 219px;
        height: 123px;
    }

    for other post images. 🙂

    #748
    Tom
    Keymaster

    That’s perfect – thanks for posting the solution 🙂

    #749
    Nikola
    Participant

    Well… It works for Firefox, but it affects mobile version (GeneratePress). 🙁

    #752
    Tom
    Keymaster

    Wrap it in desktop only CSS:

    @media (min-width: 769px) {
        /* CSS for desktop only in here */
    }
    #753
    Nikola
    Participant

    That is it! 🙂

    #755
    Tom
    Keymaster

    Perfect 🙂

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