Hi,
I am really struggling with the formatting of my page.
How do I format the text so I can write around an Image like in the article in
this link
at the moment I can only write above or below the image.
Regards,
Leggy
Hi,
I am really struggling with the formatting of my page.
How do I format the text so I can write around an Image like in the article in
this link
at the moment I can only write above or below the image.
Regards,
Leggy
Hola leggy,
This is possible with the built in image options that WordPress has.
When you insert an image, insert the thumbnail and align it to the right or left. Unless you are using a theme that has not been updated to take advantage of this, you should see the results you want.
thanks very much
Hi,
I'm still having some problems with this when I align the image to the left is looks perfect in the visual editor, but when I view the page on the site the image it displayed above the text paragraph that was wrapped around it on the visual editor.
Any Ideas
Cheers
URL?
I didn't find any alignment for an image in your css. You should have something like this,
img.alignright {
float:right;
padding: 4px;
margin: 0px 10px 10px 10px;
display: inline;
}
img.alignleft {
float:left;
padding: 4px;
margin: 10px 10px 10px 0px;
display: inline;
}
The float part is important so your text will wrap.
#page p img.alignleft {float:left;margin-right:8px}
That should give you the result you want...
Thanks,
Where exactly should I add this code?
style.css
All the above are CSS examples...
Thanks very much guys.
This topic has been closed to new replies.