Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author presscustomizr

    (@nikeo)

    Hi,
    You are using a CSS rule overriding some default behaviour of the theme :

    *, input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }

    Replace it by the following and it should fix this thumbnail issue :

    *:not(.round-div), input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }

    cheers

    Thread Starter solidweb

    (@solidweb)

    Fixed the problem. Sorry for the late response!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Featured blog post dynamic image not displaying properly’ is closed to new replies.