I tried to set class=alignleft – it works fine.
It doesn’t work if I try to set class=alignright. The text floats around the picture – but still no space between text and picture. I took a look into style.css:
.alignright {
float: right;
}
.alignleft {
float: left
}
img.center, img[align=”right”] {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright, img[align=”right”] {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}
img.alignleft, img[align=”left”] {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}
Everything seems to be fine. But the class=alignright doesn’t work.
Any ideas how to solve this problem?
Thanks in advance,
Khesrau