Page 1 of 1

CSS Positioning of Images in content

Posted: Mon Mar 06, 2006 10:57 am
by sithstemple
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.

Re: CSS Positioning of Images in content

Posted: Mon Mar 06, 2006 3:55 pm
by cyberman
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)?
Define your image style on css, look at FCK to source code view, add the class/ID to image ...

There are other ways too, but I use this  :).

Re: CSS Positioning of Images in content

Posted: Mon Mar 06, 2006 10:43 pm
by jelle
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

Code: Select all

.content img {
    float: left;
    }
should work too.
(disclaimer: untested code, may or may not cause you to treat every day as valentines day)