Hi there.
Can you tell me if there is any way to position images in the content of the page (i.e floating an image to the left or right etc)?
I know that it can be done in CSS, but I don't know how to implement that into CMSMS.
Many thanks.
CSS Positioning of Images in content
-
cyberman
Re: CSS Positioning of Images in content
Define your image style on css, look at FCK to source code view, add the class/ID to image ...sithstemple wrote: Can you tell me if there is any way to position images in the content of the page (i.e floating an image to the left or right etc)?
There are other ways too, but I use this
-
jelle
Re: CSS Positioning of Images in content
if all images in a certain div should be treated the same, you don't need to put a class or id in the img tag.
something like
should work too.
(disclaimer: untested code, may or may not cause you to treat every day as valentines day)
something like
Code: Select all
.content img {
float: left;
}(disclaimer: untested code, may or may not cause you to treat every day as valentines day)
