That's actually:
Code:
no_added_linebreaks=1
Make sure you're using that, and one to add if you're not using descriptions is:
But I was just testing all that, and one <br> tag was still creeping in.
Getting rid of it is pretty easy, just make a container div if you don't have one already. Like where you have something like so in the body where the image appears:
Code:
<script type="text/javascript">
new inter_slide(slides)
</script>
Make that:
Code:
<div id="randomimage">
<script type="text/javascript">
new inter_slide(slides2)
</script>
</div>
Then put this stylesheet in the head of the page:
Code:
<style type="text/css">
#randomimage br {
display: none;
}
</style>
Or add its rule to an existing stylesheet for the page.
If you want more help, please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks