Software Archive
Read-only legacy content

Font/Symbol Color

Snake_S_
Beginner
336 Views

Hey everyone. Where can I change the font/symbol color or what is the right html Code ?

I want this in red :))

 

 

0 Kudos
3 Replies
Alex_Hang
New Contributor II
336 Views

Hi Snake S !

If you want to change the color of a HTML page text you can use either CSS , either the code below, that will change the color of the text in red.

<p style="color: red;">this is main page</p>

 

 

0 Kudos
Snake_S_
Beginner
336 Views

Thank you but the font in header/menu stays in white.

0 Kudos
Diego_Calp
Valued Contributor I
336 Views

Hi Snake,

Try this:

1. Select the button.

2. In STYLES section at right,dropdown Custom, select New..

3. Define the style name, for example, btn-fontcolor

4. In the style code you'll see:

.btn-fontcolor {

}

Add this line:

.btn-fontcolor {
color: red;
}

Save the style.

You could use this custom style in other buttons just selecting it from the Custom styles list.

Regards,

Diego

 

0 Kudos
Reply