How to add borders to these sections

Solved

How to add borders to these sections

CameronO
Excursionist
48 1 24

How can I add black borders to the top and bottom of these two sections? 

CameronO_0-1737233359834.png

 

Accepted Solution (1)

EstherBui
Excursionist
276 39 42

This is an accepted solution.

Hi Cameron0

- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

 

div#shopify-section-template--23305591816457__logo_list_ALqH7h {
    border-bottom: 1.5px solid #000;
    border-top: 1.5px solid #000;
}

 

Result: 

EstherBui_0-1737284907144.png

 

Best,
Esther

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

View solution in original post

Replies 3 (3)

Supporter
Excursionist
62 1 4

hi @CameronO can you share the store so that i can help you.

Made4uo-Ribe
Shopify Partner
9884 2354 2952

Hi @CameronO 

Is this for mobile only? If it is 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 or theme.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:

 

@media only screen and (max-width: 749px){
.color-scheme-template--23305591816457__logo_list_ALqH7h {
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1737236933473.png

     

 

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

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.

EstherBui
Excursionist
276 39 42

This is an accepted solution.

Hi Cameron0

- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

 

div#shopify-section-template--23305591816457__logo_list_ALqH7h {
    border-bottom: 1.5px solid #000;
    border-top: 1.5px solid #000;
}

 

Result: 

EstherBui_0-1737284907144.png

 

Best,
Esther

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!