Back to ProBlog Support

digimiles
digimiles

Hey there. I'm hoping it's something that I'm not seeing but I've tried everything obvious and it's still not working.

I'm trying to float embedded images right. I set Display = Inline and Align = Right, but still the images aren't floating. In fact they are breaking up the text.

Is there some additional style sheet I need to include when using the ProBlog?

Thanks in advance for any guidance you can share with me.

marcel_k
marcel_k

I'm not sure if this is a ProBlog issue, but if you're using the rich text editor and apply those settings to the image (as it will display correctly in the editor), you'll notice that your image gets the classes fr-fir and fr-dii, which stand for 'float image to the right' and 'display image inline', respectively, I guess (anyway, there's a connection between the image settings and those class names).

Now you can style those classes accordingly yourself, which gives you the freedom of overriding an (unwanted) style a user applied. For instance:

.fr-fir {
    float: right;
}

.fr-dii {
    display: inline;
}

1-2 of 2