Center an image

Center an image

Leeloo
Explorer
48 0 12

I have a simple image of a heading on my home page placed using this code.

 

img {
display: block;
max-width: 40%;
}

 

It is currently justified to the left.  Can someone tell me the correct code to centre it. 

 

Thanks

Replies 7 (7)

GTLOfficial
Shopify Partner
784 162 172

Hello @Leeloo 
can you please provide the screen shot of your heading image.

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh
Leeloo
Explorer
48 0 12

Thanks so much!! That worked! I was having trouble attaching a screenshot!! 😝

Leeloo
Explorer
48 0 12

Hey again.  That worked but it's become super tiny on the mobile view?  Anything I can do to fix it? Thank you!

Leeloo
Explorer
48 0 12

The url is www.chantalhandley.com and it's the image that says 'Fine Art by Chantal Handley'. Looks great on the desktop view! 😄

 

Thank you!

Leeloo
Explorer
48 0 12

Yep!!  👍 Thanks! Bought you a coffee! 😍

GTLOfficial
Shopify Partner
784 162 172

Hello @Leeloo 
Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.

@media screen and (max-width: 749px) {
#shopify-section-template--17303032529118__custom_liquid_qdtqTq img {
display: block;
max-width: 60%;
margin: 0 auto;
}
}

result
1.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh
Leeloo
Explorer
48 0 12

Not sure it worked?