This topic has 4 replies, 2 voices, and was last updated 5 years, 3 months ago ago by Rose Tyler
Hi!
I would like to change the font color and font size of the title of the Icon Box. It’s a bit small now.
Hello,
You can use this custom CSS code:
.ibox-block .ibox-content h3 {
font-size: 20px;
color: red;
}
Regards
Great, thanks!
And it’s all capital letters, how can I set it to normal :-)?
Change the previous code to:
.ibox-block .ibox-content h3 {
font-size: 20px;
color: red;
text-transform: none;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up