"image with text" border colour - sense theme

Solved

"image with text" border colour - sense theme

Beautage
Tourist
22 0 2

Hi all, can someone help me?

 

Currently, the "image with text" has an F790AB background colour, but I want this colour to be just like a border frame around the text box and the actual background colour to be white if that makes sense. 

 

also, if there is a way how to do it, is it possible to get it done all at once somehow and only on the product page? As each of my products has separate templates. 

 

Thank you!

 

beautage.co

Screenshot 2024-06-07 at 19.47.20.png

Accepted Solutions (4)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @Beautage 

Do you mean like this? 

Made4uoRibe_0-1717791626358.png

This is the code. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

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:

 

.image-with-text__content {
    background: white;
    border: 5px solid #f790ab;
}

 

And Save. 

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.

View solution in original post

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Do you mean this one?

 

Made4uoRibe_0-1717869896935.png

if it is check this one. 

Same Instruction.

.header__submenu.list-menu {
    border-color: #f790ab;
    border-width: 2px;
}

And Save. 

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.

View solution in original post

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Do you mean like this? 

Made4uoRibe_0-1717879143611.png

Made4uoRibe_1-1717879151580.png

If it here is the code, same instruction. 

.accordion {
    border: 2px solid #f790ab;
}
.accordion details[open] > summary {
    border-bottom: 2px solid #f790ab;
}
.accordion summary {
    padding-left: 10px;
}

And Save. 

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.

View solution in original post

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Please, add this code. Thanks!

.accordion {
    border-top: 2px solid #f790ab !important;
}
.accordion summary {
    padding-left: 10px !important;
}
.collapsible-content__grid.collapsible-content__grid--reverse > div > div:nth-child(4) {
    border-bottom: 2px solid #f790ab !important;
}

And Save. 

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.

View solution in original post

Replies 8 (8)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @Beautage 

Do you mean like this? 

Made4uoRibe_0-1717791626358.png

This is the code. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

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:

 

.image-with-text__content {
    background: white;
    border: 5px solid #f790ab;
}

 

And Save. 

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.
Beautage
Tourist
22 0 2

That's brilliant, thank you! 

 

Can you do the same for the dropdown menu on the product page, please?

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Do you mean this one?

 

Made4uoRibe_0-1717869896935.png

if it is check this one. 

Same Instruction.

.header__submenu.list-menu {
    border-color: #f790ab;
    border-width: 2px;
}

And Save. 

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.
Beautage
Tourist
22 0 2

I am sorry for not being clear, but that looks cool too! 

 

I meant for the collapsible rows on the product page if you could do the same please 🙏 

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Do you mean like this? 

Made4uoRibe_0-1717879143611.png

Made4uoRibe_1-1717879151580.png

If it here is the code, same instruction. 

.accordion {
    border: 2px solid #f790ab;
}
.accordion details[open] > summary {
    border-bottom: 2px solid #f790ab;
}
.accordion summary {
    padding-left: 10px;
}

And Save. 

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.
Beautage
Tourist
22 0 2

It did work, but not to full extent. I would like it to be like in your image, that's how it looks after I've applied the CSS code.

 

Screenshot 2024-06-09 at 20.31.02.png

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Please, add this code. Thanks!

.accordion {
    border-top: 2px solid #f790ab !important;
}
.accordion summary {
    padding-left: 10px !important;
}
.collapsible-content__grid.collapsible-content__grid--reverse > div > div:nth-child(4) {
    border-bottom: 2px solid #f790ab !important;
}

And Save. 

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.
Beautage
Tourist
22 0 2

amazing! Thank you so much for your help!