Hi!
I would like to change apparence to the “&” symbol in Special Heading.
I have trying to change font-family with some part of quick css but doesn’t run. (For example :`.av-special-heading-tag {
font-family: “lato”,open sans !important;
}
`
The heading is good but not symbol “&”
Thank you
Hi morganeL,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi,
It seems your site is in construction mode, could you send login details as well please? You can try placing the character you want to change inside a span tag and giving it a class for styling:
<span class="custom-char">&</span>
You can then add custom CSS for the span:
.custom-char {
color:red;
}
Thanks,
Rikard
Hi Rikard,
Thank you for your answer!
Regarding the character “&”, I would like it to appear “normally”, but when I use the “special heading” there is a particular style and color.
Hi!
Please add following code to Quick CSS as well
.special_amp {
font-family: inherit;
font-style: inherit;
font-size: inherit;
line-height: inherit;
font-weight: normal;
color: inherit!important;
}
Regards,
Yigit
Hi Yigit,
Thank you for your help, It’s great and run perfectly!!
Best regards.