Image in side bar

Creating and modifying plugins.
Post Reply
sloppy robot
Regular
Posts: 17
Joined: Tue Nov 15, 2005 9:30 pm

Image in side bar

Post by sloppy robot »

How can I put an image in the side bar? Im using link list to have two links to a book, but want to put in a picture of the book.. can I do it with link list or something else? Thanks
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Image in side bar

Post by garvinhicking »

Hi!

You could easily add a "HTM nugget" sidebar plugin. In there you can add any HTML code you like, also images...

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post by Don Chambers »

This is really easy..... the plugin already has 2 places you can insert text, or any html code before or after the link list labeled as follows:

Code: Select all

Enter any text to be shown before the list of links.   
Enter any text to be shown after the list of links.
Let's say you wanted an 200px wide x 150px tall image to display before the list of links. The image is in your media library's root folder (ie, no directories/folders exist in the media library). The filename is myimage.jpg.

In that box, the html code would look something like this:

Code: Select all

<img width="200" height="150" style="border: 0px;" src="/yours9yfolder/uploads/myimage.jpg" alt="" />
Or, let's say the image itself should be a link somewhere, perhaps a place to read/buy the book, possibly even one of the links in the list:

Code: Select all

<a href="http://www.linksomewhere.com/"><img width="200" height="150" style="border: 0px;" src="/yours9yfolder/uploads/myimage.jpg" alt="" /></a>
=Don=
sloppy robot
Regular
Posts: 17
Joined: Tue Nov 15, 2005 9:30 pm

Post by sloppy robot »

ah nice..thanks.. it works. this place rules.
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post by Don Chambers »

sloppy robot wrote:this place rules.
Yes it does!!!! 8)


Happy to help!
=Don=
Post Reply