mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-12-26 01:57:30 +00:00
First imageignores image float setting366 (#378)
* usethesameclassforfloatingtheimageslikecomcontent * addchangetosecondimage
This commit is contained in:
parent
c9d4f57cea
commit
9bc1752ca5
@ -135,7 +135,7 @@ $listDirn = $this->escape($this->state->get('list.direction'));
|
|||||||
<?php $images = json_decode($item->images); ?>
|
<?php $images = json_decode($item->images); ?>
|
||||||
<?php if (isset($images->image_first) and !empty($images->image_first)) : ?>
|
<?php if (isset($images->image_first) and !empty($images->image_first)) : ?>
|
||||||
<?php $imgfloat = (empty($images->float_first)) ? $this->params->get('float_first') : $images->float_first; ?>
|
<?php $imgfloat = (empty($images->float_first)) ? $this->params->get('float_first') : $images->float_first; ?>
|
||||||
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>"> <img
|
<div class="pull-<?php echo htmlspecialchars($imgfloat, ENT_COMPAT, 'UTF-8'); ?> item-image"> <img
|
||||||
<?php if ($images->image_first_caption) : ?>
|
<?php if ($images->image_first_caption) : ?>
|
||||||
<?php echo 'class="caption" title="' . htmlspecialchars($images->image_first_caption) . '"'; ?>
|
<?php echo 'class="caption" title="' . htmlspecialchars($images->image_first_caption) . '"'; ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@ -143,7 +143,7 @@ $listDirn = $this->escape($this->state->get('list.direction'));
|
|||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php if (isset($images->image_second) and !empty($images->image_second)) : ?>
|
<?php if (isset($images->image_second) and !empty($images->image_second)) : ?>
|
||||||
<?php $imgfloat = (empty($images->float_second)) ? $this->params->get('float_second') : $images->float_second; ?>
|
<?php $imgfloat = (empty($images->float_second)) ? $this->params->get('float_second') : $images->float_second; ?>
|
||||||
<div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image"> <img
|
<div class="pull-<?php echo htmlspecialchars($imgfloat, ENT_COMPAT, 'UTF-8'); ?> item-image"> <img
|
||||||
<?php if ($images->image_second_caption) : ?>
|
<?php if ($images->image_second_caption) : ?>
|
||||||
<?php echo 'class="caption" title="' . htmlspecialchars($images->image_second_caption) . '"'; ?>
|
<?php echo 'class="caption" title="' . htmlspecialchars($images->image_second_caption) . '"'; ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user