It may be the same issue as this http://answers.themler.com/questions/16714/post-image-float-right-or-left-chosen-by-joomla-article-parameter
But i think we are talking about different content types.
When i use a single article view in Joomla i can choose if the image should be placed left, right or none.
This can be found by looking at the $params->get('float_fulltext')
Here is a piece of code from the original component
<?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; ?>
<div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image"> <img
<?php if ($images->image_fulltext_caption):
echo 'class="caption"' . ' title="' . htmlspecialchars($images->image_fulltext_caption) . '"';
endif; ?>
You can add this value to a class that starts with "pull-"
Example:
<div class="pull-<?php echo htmlspecialchars($imgfloat); ?>
This functionality is used a lot in Joomla environments and i know there are more of your customers who would like to see this feature. So can you please look at it?
It may be the same issue as this http://answers.themler.com/questions/16714/post-image-float-right-or-left-chosen-by-joomla-article-parameter But i think we are talking about different content types. When i use a single article view in Joomla i can choose if the image should be placed left, right or none. This can be found by looking at the $params->get('float_fulltext') Here is a piece of code from the original component <?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; ?> <div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image"> <img <?php if ($images->image_fulltext_caption): echo 'class="caption"' . ' title="' . htmlspecialchars($images->image_fulltext_caption) . '"'; endif; ?> You can add this value to a class that starts with "pull-" Example: <div class="pull-<?php echo htmlspecialchars($imgfloat); ?> This functionality is used a lot in Joomla environments and i know there are more of your customers who would like to see this feature. So can you please look at it?





