Re: Product pages not perfectly allignment

Solved

How to fix alignment issues on Testament theme product pages?

m8bmir
Shopify Partner
15 0 6

Hello
I'm currently using the Testament theme, and I'm facing alignment issues on my product pages. I would greatly appreciate any suggestions or solutions to this problem.

I've tried searching for solutions online, but all the suggestions I found involved adding code to the theme.css or base.css files. However, I couldn't locate these specific files in my code.

If anyone has encountered a similar issue or knows an alternative way to fix alignment problems on product pages, I'd be very grateful for your assistance. Thank you in advance for your help.


This is the website: https://www.circlesshop.com/collections/sunshine-sale/products/co-ord-set-5

 

Screenshot 2023-08-01 162322.pngScreenshot 2023-08-01 162450.png

 

 

Accepted Solution (1)
oscprofessional
Shopify Partner
16366 2440 3188

This is an accepted solution.

Hello @m8bmir 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->stylesheet.css>Add this code at the bottom.

@media screen and (max-width: 739px){
.gridlock .row .desktop-5 {
    width: 86.5% !important;
}
}

 

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...

View solution in original post

Replies 6 (6)

oscprofessional
Shopify Partner
16366 2440 3188

Hello @m8bmir 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->stylesheet.css>Add this code at the bottom.

.gridlock .row .desktop-5 {
    width: 35% !important;
}

 

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
m8bmir
Shopify Partner
15 0 6

Thanks for the response. It worked on the PC but on mobile, it's now narrow. You can go to the URL and check.

oscprofessional
Shopify Partner
16366 2440 3188

This is an accepted solution.

Hello @m8bmir 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->stylesheet.css>Add this code at the bottom.

@media screen and (max-width: 739px){
.gridlock .row .desktop-5 {
    width: 86.5% !important;
}
}

 

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
m8bmir
Shopify Partner
15 0 6

Thank you, it worked.

Made4uo-Ribe
Shopify Partner
10102 2398 3032

Hi @m8bmir ,

Try this one.

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css, theme.css or stylesheet.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:
  4. And Save.

 

@media only screen and (max-width: 739px){
div#product-right {
    width: 86% !important;
}
}
@media screen and (min-width: 980px){
.gridlock .row .desktop-7 {
    width: 50.25%;
}
}

 

Result:

Ribe_Dagandara_1-1690892439148.png

 

Ribe_Dagandara_0-1690892424076.png

I hope it help. 

 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
m8bmir
Shopify Partner
15 0 6

Thank you for your response. However, I found a solution that met my needs and it worked successfully.