• I am using gamepress pro at the moment. The issue is when i look at the site https://www.basketballcolorado.com using chrome or safari the thumbnails look fine and resize as the should, but when i use firefoxe the thumbnail images go all diffrent types of sizes

    Is that a them issue or wordpress issue

Viewing 2 replies - 1 through 2 (of 2 total)
  • The problem is the theme in my opinion. There’s an inline CSS style, which by the way is considered bad practice today. The problem is that the instruction is wrong.
    This is the html line of an image:
    <img class="attachment-article-thumb wp-post-image" alt="rmfs" src="https://www.basketballcolorado.com/wp-content/uploads/2013/09/rmfs.jpg" style="width:NaN%;">

    The directive style="width:NaN%;" doesn’t work because NaN% is an invalid value. If you replace that with 100% it works. Provided you have a child theme in place, add to your custom CSS the following instruction:

    .attachment-article-thumb.wp-post-image {
    width: 100%;
    }

    If that doesn’t work, try this one:

    .attachment-article-thumb.wp-post-image {
    width: 100% !important;
    }

    Thread Starter bballco

    (@bballco)

    thanks ill try it

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Gamepress PRO’ is closed to new replies.