Topic: [img] and [url]

Hi,

I don't know if it's a bug, but if I try to put some image on the side of a link in my signature, it appears up or down of it.

For example:

[img]http://www.glop.org/gfx/bub.gif[/img][url]http://www.glop.org/[/url][img]http://www.glop.org/gfx/bob.gif[/img]

produces:
http://www.glop.org/gfx/bub.gifhttp://www.glop.org/http://www.glop.org/gfx/bob.gif

Is there a way to make the images appear on the sides of the link ?

Re: [img] and [url]

it's because each image is getting put into two divs - one for imgbox and one for scrollbox

divs add a line break when rendered


<div class="imgbox"><div class="scrollbox"><img src="http://www.glop.org/gfx/bub.gif" alt="http://www.glop.org/gfx/bub.gif" /></div></div><p><a href="http://www.glop.org/">http://www.glop.org/</a></p><div class="imgbox"><div class="scrollbox"><img src="http://www.glop.org/gfx/bob.gif" alt="http://www.glop.org/gfx/bob.gif" /></div></div>

3

Re: [img] and [url]

try to add in the css:
.imgbox, .imgbox scrollbox {display:inline;}

Did not test it, but give it a try :]

Re: [img] and [url]

but thats a bad idea cos it will mess up posts with images

5

Re: [img] and [url]

well, if he wants to have images next to his text, that's the way I would do it... if that's a goot thing or not, I don't know, it's a thing he must know :]

6

Re: [img] and [url]

The code for images in signatures has now been changed. It was never intended that images in sigs would get the scrolling mechanism like images in posts. Somehow it just managed to slip through. If you use an image in a sig you will now just get <img class="sigimage"> tags and nothing else. It also gets rid of those bloody silly scrollbars that were never meant to be there in the first place.

Re: [img] and [url]

Paul wrote:

The code for images in signatures has now been changed. It was never intended that images in sigs would get the scrolling mechanism like images in posts. Somehow it just managed to slip through. If you use an image in a sig you will now just get <img class="sigimage"> tags and nothing else. It also gets rid of those bloody silly scrollbars that were never meant to be there in the first place.

Thanks, I'll check it out when I'll be able to.

Re: [img] and [url]

Problem fixed, thanks.