i want to place the trustpilot html liquid above the product name
Hi @ecomthio
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
Best regards,
Devcoder ![]()
Password : yawdow
Hi @ecomthio
- 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:
.product-single__meta {
position: relative;
}
.trustpilot-above-title {
position: absolute;
top: -35px;
width: 100%;
}
.product-block--header {
margin-top: 35px;
}
@media(max-width:768px){
.trustpilot-above-title {
top: -25px;
}
.product-block--header {
margin-top: 25px;
}
Hi @ecomthio
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance. If helpful, please like all posts. ![]()
Best regards,
Devcoder ![]()

