Hi,
I've made a start on a drupal 7 website. I want to use the media module for handling all images on the site, but the integration with the wysiwyg module isn't as good as I had hoped. I can add images to a wysiwyg text box using the media browser, but the formatting options are very limited. E.g. there's no option to align images left right or centre, set the borders, or to freely change the image display size. There is a list of preset sizes, but this doesn't give much flexibility when laying out a page in the editor. The normal add/edit image button doesn't seem to work with media module images.
I'm wondering if I've missed a module or config option I need, or if this is something that's being worked on? If it is, can anyone give me a rough idea of when it might be ready? I'm not in a desperate hurry, but I'm hoping to bring the site live some time over the next couple of months.
Thanks,
andy baxter.
As far as I know, WYSIWYGs aren't simply good enough to do what you'd like.
One way of getting close would be to define some CSS classes which pertain to alignment and borders and apply those classes to the images once they are placed in the editor via the WYSIWYG's style drop-down.
So, perhaps something like
.align-left { float: left; margin-right: 2em; margin-bottom: 2em; }
.align-right { float: right; margin-left: 2em; margin-bottom: 2em; }
.border-small { border: 1px solid #666; }
.border-medium { border: 3px solid #666; }
etc...
On Fri, Feb 11, 2011 at 2:19 AM, andy baxter < andy@earthsong.free-online.co.uk> wrote:
Hi,
I've made a start on a drupal 7 website. I want to use the media module for handling all images on the site, but the integration with the wysiwyg module isn't as good as I had hoped. I can add images to a wysiwyg text box using the media browser, but the formatting options are very limited. E.g. there's no option to align images left right or centre, set the borders, or to freely change the image display size. There is a list of preset sizes, but this doesn't give much flexibility when laying out a page in the editor. The normal add/edit image button doesn't seem to work with media module images.
I'm wondering if I've missed a module or config option I need, or if this is something that's being worked on? If it is, can anyone give me a rough idea of when it might be ready? I'm not in a desperate hurry, but I'm hoping to bring the site live some time over the next couple of months.
Thanks,
andy baxter.
[ Drupal support list | http://lists.drupal.org/ ]