Results 1 to 3 of 3

Thread: Text and Image Crawler v1.5 - gaps between each image

  1. #1
    Join Date
    Feb 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Text and Image Crawler v1.5 - gaps between each image

    Text and Image Crawler v1.5

    I figured out how to get rid of gaps between full loops of the image crawler but there are individual gaps between each image i place in my div. I don't have padding or margins added to them.
    I really don't know much about code but I tried to look at it anyway and see if I could find what was creating the gap. Please help me Thanks in advance!

    Lois

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    The script itself doesn't cause that. I'd have to see the page though to know why it's happening on that page. But first make sure that there are no gaps between the images in the HTML code. This means no spaces, and sometimes even no line breaks. Like:

    Code:
    <img src="whatever"><img src="something">
    Not:

    Code:
    <img src="whatever"> <img src="something">
    And not:

    Code:
    <img src="whatever">
    <img src="something">
    And of course the images cannot have any borders, padding or margin set in css. If they're linked images, you must specifically set their border-width to 0 in css.

    If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Feb 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I found out that I could fix the problem by aligning all the images to the left. Somehow specifying an alignment fixed the issue. Thanks for the help!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •