I see Craigslist ads often that feature hyperlinked images (click on it and it takes you to a page). How can I do that, and is there an html editor section for craigslist where I can hade-code certain things? If so, what are the limits?
Thanks!!
I see Craigslist ads often that feature hyperlinked images (click on it and it takes you to a page). How can I do that, and is there an html editor section for craigslist where I can hade-code certain things? If so, what are the limits?
Thanks!!
Craigslist will accept well formed (X)HTML in the description area of your advert. Make sure that you are using the absolute path to the image on the server. Don't forget to include the alt attribute for non-visual browsers (phones, etc).
So you could do something like:
<p>
<a href="http://www.example.com/mypage.html">
<img src="http://www.example.com/images/myimage.png" alt="Short description of the image" height="foo" width="bar">
</a>
</p>
Report this comment
<a href="link.html"><img src="imagelink.jpg></a>
no idea on the editor.
Report this comment
I know nothing about Craigslist but it would be like this:
<a href="scenery.htm"><img alt="Buildings & Scenery" src="photos/bridge.jpg" ></a>
Report this comment