Please check out this page http://ardleighbedandbreakfast.co.uk/?page_id=2
the image doesn't go where I want it to go even though on the CMS it looks fine. The text should wrap around the right hand side. Please help
Thanks
Please check out this page http://ardleighbedandbreakfast.co.uk/?page_id=2
the image doesn't go where I want it to go even though on the CMS it looks fine. The text should wrap around the right hand side. Please help
Thanks
anyone?
you need to add a style for '.alignleft' in your style.css
thanks
should there be a button to update my style.css when I have added that?
yes, under the editor window. if not, you need to change the file permissions. there is a link to the codex where it is explained how to do it.
Hi,
I'm having the same issue: text won't wrap around images, even though I've followed all the steps.
What's wrong with this?
<img class="size-medium wp-image-2491 alignleft" title="mary-dambrosio-sardinia-e" src="http://www.bigworldmagazine.com/wp-content/uploads/2009/11/mary-dambrosio-sardinia-e.jpg" alt="" width="225" height="194" /><p style="text-align: left;">
Thanks!
"Followed all the steps" ... are you sure? For the .alignleft class you should have:
.alignleft {
display: inline;
float: left;
//add padding and margins and borders as you see fit//
}
:)
@jonimueller
thanks! that worked perfectly for me. I am using some free template and I just added the following (minus the comments):
.alignleft {
display: inline;
float: left;
}
.alignright {
display: inline;
float: right;
}
.aligncenter {
display: inline;
float: center;
}please forgive my newbie question, but where exactly do you place this .alignleft, etc. in style.css?
Thx Joni, this solved my prob too!!
This topic has been closed to new replies.