How to move the image banner heading and button further up on both mobile and desktop view on Dawn theme? website is CORTOFIO.com
Topic summary
A user is seeking help with customizing the Dawn theme’s image banner layout. They want to reposition the heading and button elements higher up on the page, affecting both mobile and desktop views. The question includes a screenshot (uploaded on 2025-11-25) showing the current banner layout on their site (CORTOFIO.com). This appears to be a CSS/HTML customization request with no responses or solutions provided yet.
Hi @Cortofio
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.banner__content--middle-center .banner__box {
transform: translateY(-20%);
}
@media (max-width: 768px) {
.banner__content--middle-center .banner__box {
transform: translateY(-30%);
}
}
Best regards,
Devcoder ![]()
Yes there is a setting but it only changes is on Desktop/PC. On phone it stays the same for whatever reason.
Unfortunately it did not work. Tried it in both custom css and base css.
Hey @Cortofio
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
.banner__content--middle-center .banner__box {
transform: translateY(-45%) !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
It did not work. I tried adding it to both theme.liquid and custom css. ![]()
You’re probably not adding the code correctly mate because me and other developers provided the correct code so try double checking the steps or just drop your collaborator code in my private messages and I’ll get that sorted out for you.
Cheers,
Moeed
@Cortofio I think you have solved your issue as I can see the text moved up to the top
I fixed it by adding blank text/characters below the button, otherwise codes weren’t working on mobile.
@Cortofio nice to know that your problem is solved, do let me know if you need any updates.
Is the issue resolved?



