great estates…
Did you get it fixed? i’ve been going nuts with my css for three late nights trying to trouble shoot it. I upgraded from 2.5 to 2.6 and started having those probs, too. I finally got it this afternoon. Like the posters above said, you need to have an image defined in your css. The trick is, certain themes have those imgs in diff div tags.
I’m using prosumer-10 as my theme. Simply inserting:
img.alignright {padding: 4px; margin: 0 0 2px 7px; border: #000000 1px solid; display: inline; float: right;}
img.alignleft {padding: 4px; margin: 0 7px 2px 0; border: #000000 1px solid; display: inline; float: left;}
Didn’t work. My posts were still wrong. What I had to do was to insert it into the div that hosts the content of the posts, like so…
#content img.alignright {padding: 4px; margin: 0 0 2px 7px; border: #000000 1px solid; display: inline; float: right;}
#content img.alignleft {padding: 4px; margin: 0 7px 2px 0; border: #000000 1px solid; display: inline; float: left;}
In my theme, the “content” div holds the post. Here’s its CSS:
#content {width: 510px;float: right;}
So I added the img to be defined within the content div.
Does this help you get any closer to a resolution (if you hadn’t already)? Hopefully this will help some others too.