Changing color and Making banner Bigger

Solved

Changing color and Making banner Bigger

TuneToyz
Explorer
91 0 22

Hello my website is tunetoyz.com password tunetoyz123 

I need help making this section bigger and making the font white

Screen Shot 2024-10-19 at 7.48.07 AM.png

I want it to look kind of like this

Screen Shot 2024-10-19 at 7.49.21 AM.png

 Thank you!

Accepted Solution (1)

devcoders
Shopify Partner
1458 173 454

This is an accepted solution.

Hello @TuneToyz 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css.
Add the provided code at the end of the file.

 

 

.banner__box .banner__heading strong {
color: #fff !important;
padding: 0 !important;
font-size: 60px !important;
}
.banner__buttons a {
background: #fff !important;
color: #000 !important;
}

 

devcoders_0-1729350951300.png

 

 

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

View solution in original post

Replies 5 (5)

Tech_Coding
Shopify Partner
514 132 131

Hello @TuneToyz 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   .banner__content.banner__content--middle-center{
        justify-content: end !important;
   }
   .banner__box .banner__heading strong {
       color: #fff !important;
       padding: 0 !important;
       font-size: 60px !important;
    }
    .banner__buttons a {
        background: #fff !important;
        color: #000 !important;
    }
</style>

Tech_Coding_0-1729350599049.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
TuneToyz
Explorer
91 0 22

Screen Shot 2024-10-19 at 8.58.04 AM.png

hey this is what happens when I add this. 

devcoders
Shopify Partner
1458 173 454

This is an accepted solution.

Hello @TuneToyz 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css.
Add the provided code at the end of the file.

 

 

.banner__box .banner__heading strong {
color: #fff !important;
padding: 0 !important;
font-size: 60px !important;
}
.banner__buttons a {
background: #fff !important;
color: #000 !important;
}

 

devcoders_0-1729350951300.png

 

 

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
TuneToyz
Explorer
91 0 22

hey this code does not work I tried adding it to base.css and it didnt work

devcoders
Shopify Partner
1458 173 454

Hello @TuneToyz 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid

 

.banner__box .banner__heading strong {
color: #fff !important;
padding: 0 !important;
font-size: 60px !important;
}
.banner__buttons a {
background: #fff !important;
color: #000 !important;
}
Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!