Hi,
is it possible to get another & character in the special heading? see http://www.sandranederlof.nl/design-build/ below the header image. This one is very ‘curly’ and we would like a normal & character.
Hi,
The current styling is:
.special_amp
{
font-family: “Baskerville”,”Palatino Linotype”,”Palatino”,”Times New Roman”,serif;
font-style: italic;
font-size: 1.3em;
line-height: 0.5em;
font-weight: normal;
}
Try to add this to your custom CSS or child CSS:
.special_amp
{
font-family: “your font”;
font-style: italic; // change to taste
font-size: 1.3em; // change to taste
line-height: 0.5em; // change to taste
font-weight: normal; // change to taste
}
yes, placed it in the custom css file and worked. Thanks!