• In my wordpress-editor, I add an image to my text, left aligned w. the text neatlty ‘going around’ it. in the frontend (www.huizje.nl/blog), I find the text not ‘going around’ it, but the space right to the image stays empty: the image is ‘in line’ w. the text. Apparently, the css. of the frontpage ‘overrules’ the css of WordPress article, or the WordPress .css of the article is not put through correctly to the frontpage.

    But what exactly is going wrong, and where should I made what adjustment? Or am I completely thinking in the wrong direction – unfortunately my knowledge of css is just not enough to figure it out…

    Gr. Fishhead

Viewing 1 replies (of 1 total)
  • There a simple solution to this problem. First goto your theme editor, go to style.css and paste the following css into there and save it.

    .left { float:left; margin-right: 1em; }
    .right { float:right; margin-left: 1em; }

    Alright now insert an image like normal, click on the image, click on the advanced tab, under advanced link setting is a text-box called css class. If would like the image to float left simply type in “left” if you want it to float right type in “right” update it and your good to go.

Viewing 1 replies (of 1 total)
  • The topic ‘Alignment of images doesn’t work.’ is closed to new replies.