Help with Marketing email - please :)

I am trying to create an e-shot, I have done this regularly but I am now running into an issue… Does anyone know how to change the background colour of a text box? I can change the whole email background but I am struggling to just change the text box element. Can anyone offer me any help…

Thanks in advance :slightly_smiling_face:

Hi @SElvin

Thank you for reaching out.

I want to tag some of our experts here - @Oezcan @JBeatty @BarryGrennan do you have any tips and suggestions for @SElvin on this?

Thank you!

Best

Tiphaine

Hello @SElvin and Hello @TitiCuisset ,

usually a background-color on the element surrounding your text is enough.

For example <p>Text</p>

or
<span>Text</span>

And there you can use inline styling.

So example:

<p style=“background-color: red”>

or you use classes that you assign to your respective element.

example:

.yourClass {
background-color: red;
}

<p class=“yourClass”>Text</p>

What can also help you with email is this page:

I hope I could help you.

Best regards
Özcan