I installed Glossary.module version 4.4.0 and everytime a term in a post matches one in the glossary, after the gif interrogation I got a linebreak. Checking the source code, I've got that:
<a href="/glossary#2"><img src="/files/glossary.gif" /></a>
which doesn't look to me as wrong.
any clues?
Comments
Comment #1
marky commentedCheck your themes css - images are
display: blockby default. Temporarily add:and see if it clears the problem. If so, consider raising a feature request against glossary.module as it should really add a class name to
at line 127 to enable you to style it's specific images.
Note the above css will set *all* images to
display: inline, probably not what you want... ;)Comment #2
efeefe commentedmarky,
it did work for me. thanks.