I would like to remove this logo (plate with knife and fork) and make the text in the centre of the page
Topic summary
A user wants to remove a logo image (plate with knife and fork) from their webpage and center the remaining text.
Solution Provided:
- Access Shopify admin → Online Store → Themes → Actions → Edit code
- Navigate to the Assets folder and open the CSS file (base.css, style.css, or theme.css)
- Add custom CSS code at the bottom to hide the logo image and adjust text positioning
- The CSS targets specific image-with-text media elements and applies
display: noneto remove the logo - Additional padding adjustments (20% left padding) help center the text content
Status: A working solution with CSS code and visual result has been shared. The issue appears resolved with the provided styling modifications.
1 Like
Hi @julianojg ,
Would you mind to share your URL website? with password if its protected. Thanks!
Thank you for the informatin. Try thiso one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
.image-with-text__media.image-with-text__media--adapt.gradient.color-background-1.global-media-settings.media {
display: none;
}
.image-with-text__media-item.image-with-text__media-item--medium.image-with-text__media-item--top.grid__item {
display: none;
}
div#ImageWithText--template--20068958372138__55f27939-aeb7-416b-914d-ba076f06e662 {
padding-left: 20%;
}
Result:
I hope it help.

