Hi ! My store is ed4ee3.myshopify.com
When I’m on a product page, the title is not on top of the page. I would like it to be on the very top, followed by the review stars. I did some research but couldn’t find anything for impulse theme.
Thank you
Hi ! My store is ed4ee3.myshopify.com
When I’m on a product page, the title is not on top of the page. I would like it to be on the very top, followed by the review stars. I did some research but couldn’t find anything for impulse theme.
Thank you
Hi @RaphGO
To move the title of your product above the images for mobile devices on product pages in your Shopify store using the Sense theme, you will need to modify the theme’s code. Please note that making changes to your theme’s code requires some technical knowledge, and it’s always recommended to create a backup of your theme before making any changes.
Here’s a general guide to help you achieve this:
# {{ product.title }}
then you can edit it to
# {{ product.title }}
then you can edit it to
# {{ product.title }}
then you can edit it to
Go to Online Store->Theme->Edit code.
Search file base.css
Paste the below code at the bottom of this file ⇒ save
@media(min-width:767px){
#dektopProductTitle{
display:block;
}
#mobileProductTitle{
display:none;
}
}
@media(max-width:767px){
#dektopProductTitle{
display:none;
}
#mobileProductTitle{
display:block;
}
}
Hope my solution works perfectly for you.
Cheers!
Oliver | PageFly
Hi @RaphGO
I am assuming you just want this design for mobile only. If so, you can use the less complicated instructions below
@media only screen and (max-width: 750px){
.grid {
position: relative;
padding-top: 7rem;
}
.product-block.product-block--header {
position: absolute;
top: 1rem;
text-align: center;
width: 100%;
}
.jdgm-widget.jdgm-preview-badge.jdgm-preview-badge--with-link {
position: absolute;
top: 4rem;
text-align: center;
width: 100%;
}
}
Result here
WOW top notch solution ! Worked like a charm ![]()
A Huge thank you Made4Uo.
I want to do the same thing but only for desktop.
How can i do it?