Conversation
supportPlugin works great for me except… It wrap each image in <div class=”img “… tag and as such each image is positioned in new line in the post/ page . How can I avoid that? Using tables is not practical. Is there trick in plugin or workaround drought CSS, template..? Thanks for any support. Jože http://wordpress.org/extend/plugins/image-formatr/
It’s easy to change markup layout with CSS, something like this: div.img {display: inline;} A good place to add it might be your theme’s stylesheet: style.css You might try editing it with your theme-editor . It’s a good request and I will try to add some layout options directly in my plugin, thanks for the tip, -steven
This part of code made the trick. (I was missing css coding knowledge.) Thank for quick response and help. Building in layout options would be great. But you can also just include css coding tips like above in FAQ or notes of the plugin. Would save users of my level of coding knowledge. best regards Jože
It’s easy to change markup layout with CSS, something like this: div.img {display: inline;} A good place to add it might be your theme’s stylesheet: style.css You might try editing it with your theme-editor . It’s a good request and I will try to add some layout options directly in my plugin, thanks for the tip, -steven
This part of code made the trick. (I was missing css coding knowledge.) Thank for quick response and help. Building in layout options would be great. But you can also just include css coding tips like above in FAQ or notes of the plugin. Would save users of my level of coding knowledge. best regards Jože