How can I remove footer badges from my online store?

Topic summary

A user seeks to remove footer badges from their Shopify store and receives CSS solutions targeting .footer__top with display: none. The discussion evolves into multiple customization requests:

Key modifications addressed:

  • Centering and resizing footer images using width percentages and media queries for mobile responsiveness
  • Customizing newsletter form placeholder text (changing “email” to “Enter your email”) via localization files and adjusting arrow button colors
  • Disabling slideshow auto-rotation pause on mouseover by modifying the focusInHandling function in global.js
  • Hiding inventory messages on product pages using custom CSS in theme.liquid
  • Adjusting “Sale” badge positioning on mobile devices to display inline with price
  • Fixing invisible “Buy Now” button text by removing specific ::before pseudo-element code from base.css
  • Enlarging custom video display on mobile devices through media query adjustments

Current status:
Most issues resolved through CSS edits in theme files (section-footer.css, component-newsletter.css, base.css). The latest request involves making a custom liquid video larger on mobile devices only. Contributors provide step-by-step code snippets with file locations throughout.

Summarized with AI on November 6. AI used: claude-sonnet-4-5-20250929.

hey, i want to remove this highlighted badges from the footer , please help me to do so…

My store Url - https://mansaroverfurnishings.com/

Hey @manan123

Follow these Steps:

  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 tag


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @manan123 ,

You can open the Code editor and then find the file Section-footer.css and locate the line

footer__top

Then you need to add below Css

.footer__top{
display:none;
}
1 Like

**HI @manan123 **

Follow these Steps to get your result:

Go to Online Store → Edit Code->section-footer.css file

Add the following code :
Your previous code:

.footer__top {
    margin-top: 5rem;
    margin-bottom: 8.3rem;
 
}

Updated code:

.footer__top {
    margin-top: 5rem;
    margin-bottom: 8.3rem;
    display: none;
}

Result:

1 Like

thanks you so much …its worked i placed a new badge now but im having a problem i want to shift this image to center please help me, its appearing perfectly on mobile , hence want no changes on mobile

Store url -https://mansaroverfurnishings.com/

thanks you so much …its worked i placed a new badge now but im having a problem i want to shift this image to center please help me, its appearing perfectly on mobile , hence want no changes on mobile

thanks you so much …its worked i placed a new badge now but im having a problem i want to shift this image to center please help me, its appearing perfectly on mobile , hence want no changes on mobile

@manan123 You can try the following steps:
Go to Online Store → Edit component-image-with-text.css file

.image-with-text__text-item{ 
  display:none;
}
1 Like

how can i get this view??

@manan123
You may need custom coding for that
Like to reach you further

oh okay …this looks very big on store i want to make it little small how can i do that

@manan123
You can try that

.image-with-text{
  width:70%;
}
1 Like

thankyou so much!!

hey , it also decreases the size on mobile devices i dont want any changes on mobile please help me

@manan123
Use this code

@media screen and (max-width: 768px) {
   .image-with-text{
     width:auto;
   }
}
1 Like

thankyou so much!!! one more thing i want to customize my only email form below that badges

i want placeholder "enter your email " instead of only “email”, & want to put colour in arrow also just like this image below

manan123_0-1707824463762.png

i want to make my make my email form customizable like that please help me to do so…

@manan123
First of all thank Manan123, When my solution helps you, Please mark it as an accepted solution and Like the solution, So that we can help you further, In our previous solution, you couldn’t like any of the themes ??.

Now you try these step


.newsletter-form__button:not(:focus-visible):not(.focused) {
    background: #363a3e;
}

.newsletter-form__button .icon {
    width: 2.5rem;
    color: black;
}
1 Like

sorry i forget to like that, btw i liked your solutions , can you please tell me in which section i have to put this code

@manan123
NewsletterForm–sections

i have two files component-newsletter.css & newsletter-section.css i tried to add code in both of files but nothing happened pleasse check