• https://www.radbrains.com is my site

    if you click on one of the single posts that has a large chart picture, you will see that it spills over into the widget column on the single post page, but not on the main blog page.

    How should I go about fixing this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Assuming you’re using a Child Theme/ Custom Style or CSS plugin/ Custom Theme:

    First you could apply overflow: hidden; to the .hentry div, to avoid this happening again;

    .single .hentry {
     overflow: hidden;
    }

    Then add a smaller width to the div containing the anchor tag, containing the image;

    #content .wp-caption {
     width: 740px !important;
    }

    Adding !important because I fear a style will override this otherwise.

    Information on !important https://webdesign.about.com/od/css/f/blcssfaqimportn.htm

    Thread Starter deltaskelta

    (@deltaskelta)

    Thanks for the response, I was playing around with the backend settings, and I switched the dimensions to absolute instead of relative, and that seemed to fix the problem. And absolute dimensions are ok with me.

    Thanks for the reply though

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘single post page is displaying pictures differently’ is closed to new replies.