njlee
November 7, 2022, 10:37am
1
hi everyone!
I appreciate your help on this.
How do I make the . become a different colour? The dot inside the black square..
I only want the . to become a different colour example green colour
This is my website link
https://theimpossiblesauces.com/
Thank you
a1anm
November 7, 2022, 11:44am
2
You would need to add span tags around the dot. For example it would look like this:
Welcome to the I. mpossible Sauces Factory
The other (not so good?) option would be to add that section as an image instead of text.
njlee
November 7, 2022, 12:00pm
3
OK for first solution can u help show me where to add the solution pls ?
As in which section etc etc
Sorry i am a newbie to this.
Tqvm !
a1anm
November 7, 2022, 12:07pm
4
I would add it wherever you added the existing text. Just replace what you have with the example I provided above. You may need to add it as a Custom HTML block.
If you can’t get it work please include a screenshot of how you have added the existing content.
njlee
November 8, 2022, 8:11am
5
Hi sorry unable to make it work… i cannot find the existing content in the Edit Code section
I added the information through here… pls help thank you
njlee
November 8, 2022, 9:45am
7
hi
I managed to do it but i have 2 issues
how do align it middle?
for mobile view it becomes like this.. how do i fix this?
a1anm
November 8, 2022, 11:05am
8
Try replacing all of the code in the custom HTML block with the below:
.slideshow__text.banner__box {max-width: var(--page-width) !important; margin: 0 auto; background-color: transparent;}
.ss-inner {background-color: #fff; width: 100%; height: 100%; padding: 75px;}
.banner__text {margin-bottom: 30px;}
@media only screen and (min-width: 750px) {
.slideshow__text.banner__box {padding: 5rem;}
.ss-inner {padding: 125px;}
}
@media only screen and (max-width: 750px) {
.banner__box {padding: 4rem 1.5rem; !important;}
}
Welcome to The I. mpossible Sauces Factory
Ready-To-Eat | Convenient | Quality | Halal
njlee
November 8, 2022, 12:50pm
9
hi that worked great!
but i think it affected another part of the design…
the description i circled in black had a different colour background so that i can read the words.. like a bubble
i tried changing the Colour Scheme on the right side but cannot..
hope i make sense… thank you
a1anm
November 8, 2022, 12:57pm
10
Replacing the custom html with the below should fix that:
.slideshow__text.banner__box.almo {max-width: var(--page-width) !important; margin: 0 auto; background-color: transparent;}
.ss-inner {background-color: #fff; width: 100%; height: 100%; padding: 75px;}
.banner__text {margin-bottom: 30px;}
@media only screen and (min-width: 750px) {
.slideshow__text.banner__box {padding: 5rem;}
.ss-inner {padding: 125px;}
}
@media only screen and (max-width: 750px) {
.banner__box {padding: 4rem 1.5rem !important;}
}
Welcome to The I. mpossible Sauces Factory
Ready-To-Eat | Convenient | Quality | Halal
njlee
November 8, 2022, 1:41pm
11
yes fixed it!
thank you so much for your help