I have a problem with a Google Font. I implemented a Google Font into my website. Now the thing is, that the "&" sign looks really strange. So I'd like to use a different font only for the "&" character. I think something like this should work:
<p>hello <span class="otherfont">&</span> good bye</p>
No I wanted to search the page for the "&" and wrap it with the span. My first thought was $('#main-content').find('&').wrap('<span></span>');
. But of course this woun't work..
Does anybody have an idea? If not in JS/Jquery maybe in php? Thanks!