I know this is possible but I don’t know how to get rid of the badge only whilst keeping the messaging. If anyone has any pointers, it would be absolutely appreciated!
Topic summary
A user wants to remove the Afterpay logo from their Dawn theme’s payment messaging app while keeping the accompanying text message visible.
Proposed Solutions:
Two respondents suggested identical CSS code to hide the logo:
- Navigate to: Online Store → Theme → Edit Code → base.css/theme.css
- Add at the end:
.afterpay-logo-link { display: none !important; }
Current Status:
The suggested CSS solution did not achieve the desired result. The original poster confirmed the code didn’t work as intended—they specifically need the logo removed while preserving the text.
Unresolved Issue:
The discussion remains open with no working solution yet provided. The challenge appears to be selectively hiding only the logo element while maintaining the payment messaging text, which may require more targeted CSS or a different approach.
Hello @environmentalPa ,
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
.afterpay-logo-link {
display: none !important;
}
Thanks!
Hello @environmentalPa
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
.afterpay-logo-link {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hey, it didn’t work unfortunately. I’m looking for the logo to be gone but the text to still be there. Not sure if it’s doable.


