SOLVED

Hero Section - Image Sizing/Placement

Go to solution
jinawatson
Level 2

Hero Section - Image Sizing/Placement

Hi - the image in our hero section is appearing small and is too close to the top of the page. What coding do we need to add in to fix the image size to be larger based on window size and have the top of image inline with the headline on the left side?

 

https://it.recastsoftware.com/automatedpatching.html

1 ACCEPTED SOLUTION

Accepted Solutions
Jo_Pitts1
Level 10 - Community Advisor

Re: Hero Section - Image Sizing/Placement

@jinawatson ,

I've done a bit more work on this.

 

You have two culprits:

  1. Jo_Pitts1_0-1713480392287.png
    I turned off max-height.
  2. Jo_Pitts1_1-1713480425728.png

    The image width was hard coded to 200px.  I deleted that

This gave me the following:

Jo_Pitts1_2-1713480478355.png

HOWEVER: while it now looks good on desktop, your mobile version does not look good.  I think your carousel needs revisiting (didn't the community give some thoughts on this recently?), and you have a huge gap at the top of the image because of all the white space.  You need to remove the white space from the image, and in the short term put some padding at the top of the image to align it to the headline.  Do this with a CSS class, not an inline style.  In your media queries, you can make sure the class that provides the padding get's overridden with a mobile suitable value.

 

I did dig into the carousel issue.  By deleting this CSS element, I resolved the major issue. 

Jo_Pitts1_0-1713481214112.png

 

For the image related issue, as a general rule - never bake padding into the image.  Crop the image to its correct margins, and do the padding with CSS.  I put a dummy image in that was the same size as your hero image would be if it were correctly cropped, and added in the following CSS

 

.hero-padding { padding-top:150px;
        }

 

and inside one of the width related media queries:

 

.hero-padding { padding-top:0px !important;
        }

 

Then I added the class hero-padding to the styles for the hero image.

Jo_Pitts1_0-1713482714443.png

That gave a pretty good outcome.

 

Longer term, you should redesign the template so the header spans the full width and then the left and right columns sit under it, removing the need for extra padding for the hero image in desktop mode.

Currently, the layout is like this:

Jo_Pitts1_3-1713480751657.png

and it really needs to be this:

Jo_Pitts1_4-1713480833241.png

Cheers

Jo

 

View solution in original post

4 REPLIES 4
Jo_Pitts1
Level 10 - Community Advisor

Re: Hero Section - Image Sizing/Placement

@jinawatson 

is this the hero image?

https://it.recastsoftware.com/rs/563-ODB-688/images/am_ssv2.png

 

How big should it be? 

 

Assuming the image is the one I'm guessing at, the first thing I'd say, is get the image cropped to it's actual dimensions.  It has a LOT of whitespace top and bottom.  

 

Cheers

Jo

Jo_Pitts1
Level 10 - Community Advisor

Re: Hero Section - Image Sizing/Placement

@jinawatson ,

I've done a bit more work on this.

 

You have two culprits:

  1. Jo_Pitts1_0-1713480392287.png
    I turned off max-height.
  2. Jo_Pitts1_1-1713480425728.png

    The image width was hard coded to 200px.  I deleted that

This gave me the following:

Jo_Pitts1_2-1713480478355.png

HOWEVER: while it now looks good on desktop, your mobile version does not look good.  I think your carousel needs revisiting (didn't the community give some thoughts on this recently?), and you have a huge gap at the top of the image because of all the white space.  You need to remove the white space from the image, and in the short term put some padding at the top of the image to align it to the headline.  Do this with a CSS class, not an inline style.  In your media queries, you can make sure the class that provides the padding get's overridden with a mobile suitable value.

 

I did dig into the carousel issue.  By deleting this CSS element, I resolved the major issue. 

Jo_Pitts1_0-1713481214112.png

 

For the image related issue, as a general rule - never bake padding into the image.  Crop the image to its correct margins, and do the padding with CSS.  I put a dummy image in that was the same size as your hero image would be if it were correctly cropped, and added in the following CSS

 

.hero-padding { padding-top:150px;
        }

 

and inside one of the width related media queries:

 

.hero-padding { padding-top:0px !important;
        }

 

Then I added the class hero-padding to the styles for the hero image.

Jo_Pitts1_0-1713482714443.png

That gave a pretty good outcome.

 

Longer term, you should redesign the template so the header spans the full width and then the left and right columns sit under it, removing the need for extra padding for the hero image in desktop mode.

Currently, the layout is like this:

Jo_Pitts1_3-1713480751657.png

and it really needs to be this:

Jo_Pitts1_4-1713480833241.png

Cheers

Jo

 

jinawatson
Level 2

Re: Hero Section - Image Sizing/Placement

Thanks for digging into this Jo! Definitely what we need to have done - now you know why we're looking for someone to create new templates for us. 🙂

jinawatson
Level 2

Re: Hero Section - Image Sizing/Placement

TBD