Hi there,
I would like to change the width of the first text box here: https://taneraskin.com/pages/uberuns
I have the feeling something is blocking any changes in the code, maybe a “!important” or the box in which the text is is too narrow?
I tried to change it under Edit Code ➔ section-rich-text.css
-
How do I get the whole text box wider?
-
How can I change the color of the button?
Best,
Isa
2 Likes
Hi @isabellemaria ,
I understand you want to have the whole text box wider and change the button color. Please follow the instructions below
- From your Admin page, go to Online store > Themes > click the three dots > Edit code
- Find the Asset folder, and open the base.css file
- Add the code below at the very end of the file
NOTE: Change the red for the background color, and black for the text color
@media screen and (min-width: 990px){
.rich-text__blocks.center {
max-width: 100%;
}
}
.rich-text__buttons a.button.button--primary {
background: red;
color: black;
}
1 Like