JohnnySlotCar wrote:
BTW, you mentioned putting a <BR> in, where are you adding that? That's another good idea, as my users aren't hitting return before inserting their images.
|
Sorry I missed that question... you can put the <br> on this line on function_format_post.asp:
strTempMessageLink = Replace(strTempMessageLink, "[/IMG]", """ id='chkImg1' name='chkImg2'>", 1, -1, 1)
change it to:
strTempMessageLink = Replace(strTempMessageLink, "[/IMG]", """ id='chkImg1' name='chkImg2'><br>", 1, -1, 1)
That's line 211....
<edit> might also want to add a <br> at the beggining of the img tag on line 210, change it from:
strTempMessageLink = Replace(strTempMessageLink, ", "<img src=""", 1, -1, 1)
to:
strTempMessageLink = Replace(strTempMessageLink, ", "<br><img src=""", 1, -1, 1)
but thinking about it I would rather add instead of <br>, that way I can't mess your layout and people can still post a small image next to their text....
Edited by fernan82