• Hey, I’m in need of a certin plugin.

    I need something that can add 9 100×100 square images in a widget, with each image linking to different location.

    it should look like this:

    [][][]
    [][][]
    [][][]

    Any wordpress plugin can do this?

    Let me know! =)

Viewing 1 replies (of 1 total)
  • You can do this with the text widget. Depending on the size of the container of the sidebar, the following code should work well:

    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <img class="alignleft" src="#" width="100" height="100" alt="" />
    <div class="clear"></div>

    Note: This solution assumes that you have the following css classes defined in your stylesheet:

    img.alignleft {
    	margin: 0 7px 2px 0;
    	display: inline;
    	}
    .clear{ clear:both; }

    Whenever I need to put images in the sidebar, I use a similar solution.

Viewing 1 replies (of 1 total)

The topic ‘LOOKING FOR A PLUGIN’ is closed to new replies.