Tuesday 10 January 2006 6:26:25 am
Hi there,
I tried to create a custom class for the online editor, which was supposed to add a gray border around embedded images in my article. So I added to my css
.image-with-border {
border: 1px;
border-color: #ccc;
}
Then I added in my content.ini.php
[object]
AvailableClasses[]=image-with-border
After doing this I see the newly created class in the dropdown list, but if I choose it, the resulting html will be
<div class="object-right image-with-border">
I admit I never seen two classes declared in that way before, and it appears not to work, because the browser does not apply any of the settings specified in the second class. Could someone help me?
Thank you, Max
|