2 replies
Hello,

I was wondering if anyone can get me a little had. I am in the process of building the following site www.bybonline.info and for some reason the pictures are not justifying correctly with the words.

Inside the WP editor it look like it suppose to after updating. But when I look at the actual website, the picture is justified and the words are at the bottom. I have tried looking at the HTML and everything looks fine...I think.

Has anyone had this same problem....if so, what did you do??

Any help in this matter would be greatly appreciated.

Thanks so much!

Fred Williams - BYB Online
#wordpress
  • Profile picture of the author Kezz
    Looks like your "style.css" file doesn't have the required alignment code in it.

    Look for this:

    HTML Code:
    img.alignleft {
    	margin-right:10px;
    	margin-bottom:5px;
    }
    img.alignright {
    	margin-bottom:5px;
    	margin-left:10px;
    and change it to this:

    HTML Code:
    img.alignleft {
            float:left;
    	margin-right:10px;
    	margin-bottom:5px;
    }
    img.alignright {
            float:right;
    	margin-bottom:5px;
    	margin-left:10px;
    That should do the trick.
    {{ DiscussionBoard.errors[1493187].message }}

Trending Topics