YOURHEAD has made a
Manual about KWIX.
How to change the Text Color, the FontSize and the
FontWeight of a Kwix Style?
Change the Kwix Title: Paste this code in the Custom CSS
of
a (Blocks)page where Kwix will show up:
h3 {
color: #FAAFBE;
font-size: 12px;
font-weight: bold;
}
Change the Kwix SubTitle. Paste this code in the Custom CSS
of
a (Blocks)page where Kwix will show up:
.kwix-text {
color: #FAAFBE;
font-size: 12px;
font-weight: normal;
}
• In this example the FontColor
is pink. HTML color codes are
hexadecimal triplets representing the colors red, green,
and blue. For example, in the the color red, the color code
is #FF0000. You can replace it by any colour.
All colorcodes.
• FontSize
is 12px. Bigger FontSize:
13px, 14px, etc. Smaller fontSize: 11px, 10px, etc.
• FontWeight
is bold or normal.