Hi,
Two quick questions:
1. Could you please tell me how to fix the messy spacing around the quote marks around “hi” in the heading above my contact form (link included below)?
2. My favicon appears very muted, perhaps 50% of actual color or opacity? Any suggestions why?
Thanks.
Hi Trevor!
1. Try adding this to the Quick CSS:
span.special_amp {
margin: 0 5px;
}
2. The favicon looks fine, at least on my end:
Cheers!
Josue
Thanks Josue. That’s a little better, but ideally I would prefer much less space between “say” and the open quote and less space after “hi,” before the closed quote.
Hey!
Seems you already adjusted it to 3px, you can also target them individually, with this:
span.special_amp:nth-of-type(1) {
margin: 0 10px;
}
span.special_amp:nth-of-type(2) {
margin: 0 20px;
}
Best regards,
Josue
Perfect. Thanks very much.
You are welcome, always glad to help :)
Regards,
Josue