Hi!
Does anyone know some CSS trick that I can use on the templates to render the bold style with a specific font size?
Something like this:
.bold {
font-size: 20px;
}
Thank you.
Hi!
Does anyone know some CSS trick that I can use on the templates to render the bold style with a specific font size?
Something like this:
.bold {
font-size: 20px;
}
Thank you.
Hi! Try this
b {
font-size: 20px;
}
It worked. Thanks a lot. Do you happen to know one for italics too?
Sure! For italic you can either use em or i (depending on the tag that appears in the HTML)
E.g. this should cover both cases
i, em {
font-size: 20px;
}
(On a similar note, you may want to use
b, strong {
font-size: 20px;
}
instead of the solution I proposed in the last message, just to have some more versatility.)
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.