1. edn
  2. Commercial Templates
  3. Monday, 25 February 2013
  4.  Subscribe via email
Hi there.

I have bought and installed the ultralite template, and have loaded some pictures in the ImageSlideShow. All well.

I have to credit the photografer via links from the images, but the links won't show.

The generated html seems ok.

[code type=html4strict]<li><a href="/site/thhe-foto.html" target="_blank"><img src="/site/images/ImageSlideShow/Aften2.jpg" alt="Tak til Thomas" /></a></li>[/code]


"/site/thhe-foto.html" redirects to the site.


Is there a conflict between the template and the module mod_briaskISS?

You can see the site here.

www.stubkjaer-nielsen.dk


/Erling
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Erling

To amend this issue try adding the following to the end of your templates template.css (../templates/j51_ultralite/css/template.css)..

[code type=css]#showcase_overlay {
height: 35px;
top: auto;
bottom: 0px;
}[/code]
Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Ciarán.

Thanks. That helped.

The link is working fine now.


To get the text right

[code type=html4strict] alt="Tak til Thomas" [/code]

I had to changed in the file

modules/mod_briaskISS/mod_briaskUtility.php

(line 166 to 180) (alt -> title)

from

[code type=html4strict]switch ($picEnableLnk)
{
case 0:
echo '<li><img src="'.$picDir.'/'.$file.'" alt="'.$picTitle.'" /></li>';
break;

case 1:
echo '<li><a href="'.$picURL.'"><img src="'.$picDir.'/'.$file.'" alt="'.$picTitle.'" /></a></li>';
break;

case 2:
echo '<li><a href="'.$picURL.'" target="_blank"><img src="'.$picDir.'/'.$file.'" alt="'.$picTitle.'" /></a></li>';
break;
}
}
[/code]

to

[code type=html4strict]switch ($picEnableLnk)
{
case 0:
echo '<li><img src="'.$picDir.'/'.$file.'" title="'.$picTitle.'" /></li>';
break;

case 1:
echo '<li><a href="'.$picURL.'"><img src="'.$picDir.'/'.$file.'" title="'.$picTitle.'" /></a></li>';
break;

case 2:
echo '<li><a href="'.$picURL.'" target="_blank"><img src="'.$picDir.'/'.$file.'" title="'.$picTitle.'" /></a></li>';
break;
}
}
[/code]
  1. more than a month ago
  2. Commercial Templates
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Thank you Erling for posting this fix.

Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 3
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!