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

Adding Outline Or Text Shadow To Menu On Studio Theme

Solved

Adding Outline Or Text Shadow To Menu On Studio Theme

Kanal100
Excursionist
14 0 4

Hi,

 

I am trying to create an outline and/or shadow for my headline of my shop that I placed on top of a photo. I found solution for Brooklyn theme for example, but not for the Studio theme I use.  https://www.kanal-100.com/

Can you please help?

 

Thank you

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10211 2427 3080

This is an accepted solution.

Hi @Kanal100 

Check this one. 

  • 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:

 

#Banner-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe h2.banner__heading.inline-richtext.h0 {
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

 

  • And Save, 
  • Result:
  • Made4uoRibe_0-1702057227740.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

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 3 (3)

theycallmemakka
Shopify Partner
1813 440 474

Hi @Kanal100 ,

 

Please add below code at the end of theme.liquid file just above "</body>".

 

<style>
#shopify-section-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe .banner__buttons a {
    border: 2px solid #000;
}

#shopify-section-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe .banner__buttons a:before{
  box-shadow: none;  
}
</style>

 

Result:

theycallmemakka_0-1702052535947.png

 

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

Made4uo-Ribe
Shopify Partner
10211 2427 3080

This is an accepted solution.

Hi @Kanal100 

Check this one. 

  • 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:

 

#Banner-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe h2.banner__heading.inline-richtext.h0 {
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

 

  • And Save, 
  • Result:
  • Made4uoRibe_0-1702057227740.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

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.
Kanal100
Excursionist
14 0 4

Nice!

Thank you for your fast answer and help. That did the job!