hi. is there a way to make the text stronger here: http://i.imgur.com/tC54jrD.jpg that it looks more like this: http://i.imgur.com/3TDjbBi.jpg
Hi!
Wrap the heading content with <strong></strong>
or <b></b>
.
Best regards,
Josue
THX. Nice but both are much to strong. I think i must look for anoher way. maybe a custom css class with other line strongness, if there is such a thing like line strongness??
That depends on the font, go to Google Fonts and check the available weights of the font you are using, then you could set a custom class to the strong (inside the heading element), and with CSS:
strong.not_so_strong{
font-weight: 500;
}
Cheers!
Josue
ok, i added this to style.css
.strong.not_so_strong{
font-weight: 500;
}
and applyed it here: http://i.imgur.com/3e3GZrA.png
Hey!
Please change your custom CSS class to “not_so_strong” and then code to
.not_so_strong {
font-weight: 500;
}
Regards,
Yigit
Done. And i have set the heading to class: custom-spacing not_so_strong but no effect :(
http://www.alfaweb.at/testwaldi/fuer-firmen/
This will do it:
.not_so_strong .av-special-heading-tag {
font-weight: 400;
}
Regards,
Josue
Done. Closed.