Skip to main content
EmanAssem
Inspiring
May 7, 2020
Answered

I need to insert coloured Note/tip section in a box, when inserting textbox, I cannot format it.

  • May 7, 2020
  • 1 reply
  • 406 views

I need to insert Notes/tips in a formatted box with a different color. Is there a way to do that rather than inserting "text boxes'?

This topic has been closed for replies.
Correct answer Peter Grainge

Try this in your CSS.

 

P.Emphasis1 {
color: rgb(0, 84, 159);
font-size: 10pt;
font-weight: normal;
margin-top: 0pt;
margin-bottom: 10pt;
padding: 6pt;
font-family: Verdana, sans-serif;
border: solid 2px rgb(140, 180, 225);
background-color: rgb(239, 242, 249);
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}

 

Mix as required and bake for five minutes. 🙂

 

1 reply

Peter Grainge
Community Expert
Peter GraingeCommunity ExpertCorrect answer
Community Expert
May 7, 2020

Try this in your CSS.

 

P.Emphasis1 {
color: rgb(0, 84, 159);
font-size: 10pt;
font-weight: normal;
margin-top: 0pt;
margin-bottom: 10pt;
padding: 6pt;
font-family: Verdana, sans-serif;
border: solid 2px rgb(140, 180, 225);
background-color: rgb(239, 242, 249);
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}

 

Mix as required and bake for five minutes. 🙂

 

Use the menu (bottom right) to mark the Best Answer or Highlight particularly useful replies. Found the answer elsewhere? Share it here.
EmanAssem
EmanAssemAuthor
Inspiring
May 7, 2020

@Peter Many thanks for the help. It works great:)