We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Image in footer is blurry

Image in footer is blurry

snk729
Shopify Partner
40 0 14

Hi All,

I need help with my shopify website - we have added the client's LOGO as an image to the footer - this is a design requirement - but the logo is super blurry even though on the backend it looks clear and crisp. How do I make sure the logo doesn't lose clarity and stays clear?

Screenshot 2025-06-13 at 11.57.30 AM.png

website:
www.murelle.co
password:
12345

Replies 8 (8)

Mustafa_Ali
Trailblazer
523 51 101
<style>
@media screen and (min-width: 768px) {
.footer-block__image-wrapper img {
    width: 20%;
}
}
@media screen and (max-width: 767px) {
.footer-block__image-wrapper img {
    width: 50%;
}
}
</style>

Mustafa_Ali_0-1749796806353.pngMustafa_Ali_1-1749796894950.png

hey @snk729 dear follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution

 

"Need a Shopify Specialist"?Chat on WhatsApp
Or email at: mustafaalideveloper001@gmail.com
"If my solution was helpful, mark it as a solution and hit the like button! And wait don't forget to"
snk729
Shopify Partner
40 0 14

Hi thanks for the reply! I actually need it to he full-scale - like how it is in the screenshot, but its currently blurry

topnewyork
Astronaut
1552 192 253

Hello @snk729 

Try this code:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag

<style>
.footer-block__image-wrapper img {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: scale-down;
    width: 590px;
}
@media only screen and (max-width: 767px) {
  .footer-block__image-wrapper img {
  
    max-width: 200px; /* optional: set a max width */
  
  }
}

</style>

 

Result:

screenshoteasy (39).png

 

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month

websensepro
Shopify Partner
2144 268 319

Hi @snk729 ,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
@media(min-width:768px){
.footer_area {
    padding-bottom: 13px !important;
}
footer-block__image-wrapper img {
    max-width: 25% !important;
  
}
}
@media(max-width:767px){
.footer-block__image-wrapper img {
    max-width: 30% !important;
}
}
</style>

Result:

websensepro_0-1749798484246.pngwebsensepro_1-1749798501960.png

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! 🚀 (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
snk729
Shopify Partner
40 0 14

Hi thanks for the reply! I actually need it to he full-scale - like how it is in the screenshot, but its currently blurry

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

Hi @snk729 

You can go to your store admin > Sales channels > Online Store > Themes > click "..." in Current theme > Edit code > open footer.liquid file, change 1100 to 2000 in lines 116 and 119, save file and check again. 

Screenshot 2025-06-13 at 16.07.24.png

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

onescales
Shopify Partner
183 3 20

without coding, you should check the recommended size of logo on the theme documentation and make it exactly that so that it will not change sizing and quality.

Skyrocket Your Shopify Success with Our Proven Step By Step Growth Course

We Teach Shopify and Solve E-commerce Problems.
See our Youtube Channel for Tutorials - https://www.youtube.com/@onescales
snk729
Shopify Partner
40 0 14

Hi - tried doing this the image is still blurry 

www.murelle.co
password:
12345
logo in footer - i tried using 1950 x 500 too