I was trying to change code but havent had any luck on attaching the URL LINK to the SLIDE IMAGE as well.
Im trying to attach URL link to image for when one doesn't want to attach a Title or Description for the image.
Seems its hard since the Image is inserted with the
Code: Select all
<div class="slideshow-slides" style="background-image: url('{{ slide.slide_image }}');">
Code: Select all
<div class="slideshow-slides" style="background-image: url('{{ slide.slide_image }}');">
{% if slide.slide_title|length > 0 || slide.slide_description|length > 0 %}
<div class="slideshow-slides-text">
{% if slide.slide_title|length > 0 %}
<a class="forumtitle" href="{% if slide.slide_link|length > 0 %}{{ slide.slide_link }}{% else %}#{% endif %}" title="{{ slide.slide_title }}">{{ slide.slide_title }}</a><br />
{% endif %}
{{ slide.slide_description }}
</div>
{% endif %}
</div>