How can I widen the text box and change button color on my page?

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

  1. How do I get the whole text box wider?

  2. 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

  1. From your Admin page, go to Online store > Themes > click the three dots > Edit code
  2. Find the Asset folder, and open the base.css file
  3. 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