• Hi,

    I just spent a bit of time inserting a bunch of media logos and links on my site (it’s messy now, but will clean up).

    One thing I DO NOT UNDERSTAND is why is each subsequent logo+text entry offset to the right?

    Is this a flaw of my theme (Thesis? doubt it is), wordpress flaw, or did I miss a setting or something?

    Can anyone offer any help?

    The page in question is http://www.manmeetswoman.com/media-appearances/

    I should also tell you that when I inserted the photos, I made it word wrap to the left. That may have something to do with it.

    But when I set word wrap to none, the text goes under the image, not beside.

    I may have to resort to putting in a table unless there is a CSS or wordpress fix for it.

    thanks

Viewing 1 replies (of 1 total)
  • One thing I DO NOT UNDERSTAND is why is each subsequent logo+text entry offset to the right?

    Because, as you suspected, the align/float left setting means that the space (and margins) occupied by the first image aren’t quite “finished” before the second image display – so it’s pushed over to the right.

    The CSS solution would be to add a clear:left; to each image but the problem is how to do this so that it doesn’t impact every other left-aligned image on your site. I’d suggest wrapping all of the images on this page with a <div> with a unique id (eg. <div id="logos">) and then adding:

    #logos img.alignleft {clear:left;}

    to your stylesheet.

Viewing 1 replies (of 1 total)
  • The topic ‘Inserting rows of images (media logos) but they come off slanted?’ is closed to new replies.