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

Re: Mobile borders

Solved

Mobile borders

JhordanMSUITE
Shopify Partner
135 2 42

Hello, I'm attempting to designate a particular left border on the Collections page, specifically the Card-Meta left border. My objective is to eliminate these borders. Despite numerous attempts, I'm struggling to identify the correct selection for removal. Any assistance would be greatly appreciated.

https://2d26b3.myshopify.com/collections/all

pw: reishi

 

Screenshot 2024-03-29 at 1.58.15 PM.jpeg

Accepted Solution (1)

TerenceKEANE
Shopify Partner
512 86 80

This is an accepted solution.

Hi!
 
It seems that the HTML and CSS properties in your software are quite complex. Therefore, it is normal that you cannot find the location of the element you are looking for. You can solve this problem by adding the following code to the bottom of your app.css file;
 
1) Navigate to the 'Edit Code' option in your theme settings, then search for 'app.css' in the search bar. 
 
.product .cards > * {
    outline: none !important;
}
 
.product .cards .card-image{
    
    border: 1px solid #d9d9d9!important;
 
}
 
section.product .card-meta {
    border-left: 1px solid #d9d9d9!important;
    border-right: 1px solid #d9d9d9!important;
    border-bottom: 1px solid #d9d9d9!important;
}
 
 
 
 
If you cannot do this, you need to put the same code with the <style> tag in the following place:
 
1) Navigate to the 'Edit Code' option in your theme settings, then search for 'theme.liquid' in the search bar. 
2) Paste the following code below the '<head>' tag. 
 
TerenceKEANE_0-1711738682258.png

 

 
 
 
  <style>
    .product .cards > * {
    outline: none !important;
}
 
.product .cards .card-image{
    
    border: 1px solid #d9d9d9!important;
 
}
 
section.product .card-meta {
    border-left: 1px solid #d9d9d9!important;
    border-right: 1px solid #d9d9d9!important;
    border-bottom: 1px solid #d9d9d9!important;
}
 
  </style>
 
 
If you can't do it, let me know!
 
Terence..
★ Looking for Dedicated Premium Coding Support? Join our unique "PREMIUM SUPPORT" service starting at 59 USD for 1 MONTH!
★ Get skilled Shopify developers at BUDGET-FRIENDLY RATES — explore Novajetsoft.com for a rapid quote!
If my support was a lifeline for you, The COFFEE  
would be the anchor keeping me steady!
★ For Quick response --> WhatsApp | Email --> info@novajetsoft.com | Software Engineer - Specializing In Advanced E-Commerce Websites

View solution in original post

Replies 3 (3)

TerenceKEANE
Shopify Partner
512 86 80

This is an accepted solution.

Hi!
 
It seems that the HTML and CSS properties in your software are quite complex. Therefore, it is normal that you cannot find the location of the element you are looking for. You can solve this problem by adding the following code to the bottom of your app.css file;
 
1) Navigate to the 'Edit Code' option in your theme settings, then search for 'app.css' in the search bar. 
 
.product .cards > * {
    outline: none !important;
}
 
.product .cards .card-image{
    
    border: 1px solid #d9d9d9!important;
 
}
 
section.product .card-meta {
    border-left: 1px solid #d9d9d9!important;
    border-right: 1px solid #d9d9d9!important;
    border-bottom: 1px solid #d9d9d9!important;
}
 
 
 
 
If you cannot do this, you need to put the same code with the <style> tag in the following place:
 
1) Navigate to the 'Edit Code' option in your theme settings, then search for 'theme.liquid' in the search bar. 
2) Paste the following code below the '<head>' tag. 
 
TerenceKEANE_0-1711738682258.png

 

 
 
 
  <style>
    .product .cards > * {
    outline: none !important;
}
 
.product .cards .card-image{
    
    border: 1px solid #d9d9d9!important;
 
}
 
section.product .card-meta {
    border-left: 1px solid #d9d9d9!important;
    border-right: 1px solid #d9d9d9!important;
    border-bottom: 1px solid #d9d9d9!important;
}
 
  </style>
 
 
If you can't do it, let me know!
 
Terence..
★ Looking for Dedicated Premium Coding Support? Join our unique "PREMIUM SUPPORT" service starting at 59 USD for 1 MONTH!
★ Get skilled Shopify developers at BUDGET-FRIENDLY RATES — explore Novajetsoft.com for a rapid quote!
If my support was a lifeline for you, The COFFEE  
would be the anchor keeping me steady!
★ For Quick response --> WhatsApp | Email --> info@novajetsoft.com | Software Engineer - Specializing In Advanced E-Commerce Websites
JhordanMSUITE
Shopify Partner
135 2 42

Thank you! This helped, much appreciated!

TerenceKEANE
Shopify Partner
512 86 80

I'm glad it's working out. If you need help with anything else, feel free to tag me or send a message, and I'll assist whenever I can find time between my own software tasks.

Take care

Terence.

★ Looking for Dedicated Premium Coding Support? Join our unique "PREMIUM SUPPORT" service starting at 59 USD for 1 MONTH!
★ Get skilled Shopify developers at BUDGET-FRIENDLY RATES — explore Novajetsoft.com for a rapid quote!
If my support was a lifeline for you, The COFFEE  
would be the anchor keeping me steady!
★ For Quick response --> WhatsApp | Email --> info@novajetsoft.com | Software Engineer - Specializing In Advanced E-Commerce Websites