Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi everyone!
I have a question. I want to change something in my product page. I want the title and details of the product on the left side. The color/size and add to cart should be on the right. Now it looks like this:
And i want it to look like this:
store: https://uncutgemsnl.myshopify.com/
PW: shaupu
Theme is dawn
Thanks in advance! have a great day
ps: if you guys know why the images look blurry hmu. They were showing correctly before.
Solved! Go to the solution
This is an accepted solution.
Based on the provided theme we can make the same layout in your store.
But need to do custom code in your theme file.
Would you like p/m me so that I can start work.
Thanks
Hey @uncutgemsnl,
Could you please share the link of the reference website so that I can take a look and provide the solution based on the reference website.
This is an accepted solution.
Based on the provided theme we can make the same layout in your store.
But need to do custom code in your theme file.
Would you like p/m me so that I can start work.
Thanks
Yes i will PM you. Thanks
Hi,
Hope this will help
Create a two‑column layout: Left = title & details, Right = color/size & add‑to‑cart. by doing following
- Edit the Product Template in Code and Rearrange HTML (main-product.liquid) to Create a New Layout
HTML code example for New Layout:
<div class="product-layout">
<div class="product-left">
<!-- Title -->
{%- render 'product-title' -%}
<!-- Description -->
{%- render 'product-description' -%}
</div>
<div class="product-right">
<!-- Variants (Size, Color), Add to Cart, etc. -->
{%- render 'product-form' -%}
</div>
</div>
- Add CSS for the New Layout