• Our website has a splash page and we want to display a big image on it. However, no matter what size we upload it or what size we specify in the html, it can’t display big enough. In the page template, the sidebar is deactivated.

    Image code <img title="footballsplashenlarged" src="http://hilite.org/wp-content/uploads/2012/09/footballsplashenlarged.png" alt="" width="1460" height="960" />

    Our theme is Linepress if that helps and here is a link to our website: http://hilite.org

Viewing 4 replies - 1 through 4 (of 4 total)
  • The image is being constrained by your current theme itself. I’m sorry but as you appear to be using a commercial theme, you need to seek support from the theme’s vendors.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    nevermind

    there is a style in <!-- Custom Styling --> section (embedded in the head section) which restricts the image size:

    img {
        height: auto;
        max-width: 540px;
    }

    as this says ‘custom styling’ it might have been added by you (?)

    possibly add this to style.css or the custom styling (?):

    .page-template-splashhome-php #wrapper img { max-width: 100%!important; }
    Thread Starter cyanophycean314

    (@cyanophycean314)

    Thank you all for your quick response, I shall try some of these solutions, and if all else fails, contact the vendor.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Image is not big enough’ is closed to new replies.