Hi guys, I am rolling out a terms and conditions page where I want to include a hidden from spammers, email address, the simplest solution for me was to create an image of the address, I am having trouble lining the image up with the text on the line, any css suggestions…
We’d need to see the code but to line an image up you could probably just use vertical-align:middle on the image assuming it is an inline element.
If you just need the image nudged a little horizontally then you could use horizontal margins or if you need a couple of pixels alignment vertically then add position:relative and top:-2px etc.
It all depends on the content and structure but one of the above should work.