Viewing 6 replies - 1 through 6 (of 6 total)
  • Check in media settings what dimensions “medium” is set at because the image is (correctly) obeying the class rule:
    class=”alignnone size-medium wp-image-79″

    Thread Starter johnnyr860

    (@johnnyr860)

    I went into settings> media and what I got was the following sizes-

    Thumbnail Size- 150 x 150
    Medium Size 300 x 300
    Large Size 1024 x 1024

    I changed the settings on medium from 300 x 300 to 1024 x 1024 and saved everything and somehow this still did not fix the issue I was having. The images are still showing up small. The 2nd banner is bigger then it was before but it now looks blurry and even in then it still is not the 850 x 202 size that it should be.

    Those images are contained within a <div> that has a class .entry-content. In your CSS, elements of that class have a max-width of 474px. Images within the class .entry-content are set to display at width 100%. So 100% of 474px = 474px. So that’s the width at which the images are being displayed.

    Thread Starter johnnyr860

    (@johnnyr860)

    So how do I change the image to the correct size of 850 x 202? Is it as simple as changing the 474 to 850 x 202?

    It’s the size of the containing element that’s dictating the image size. You could increase the max-width of .entry-content to match the width of your images but that’s going to massively increase the content width of your site. Maybe have a rethink on your choice of layout?

    Thread Starter johnnyr860

    (@johnnyr860)

    Thank you so much this has officially fixed my issue and the banner is uploaded just the size I need it to be. I can now continue working on the rest of my site. I appreciate all of your help ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Images showing up smaller then they should be…’ is closed to new replies.