admin管理员组文章数量:1393160
I want to increase the thumbnail image size of nggallery carousel template. Check this link /?pid=6 is there any better code to do it. Here, is the code:
<!-- Thumbnail list -->
<?php foreach ( $images as $image ) : ?>
<?php if ( $image->hidden ) continue; ?>
<?php $subnavi[] = $image->pidlink ;?>
<li id="ngg-image-<?php echo $image->pid ?>" class="ngg-thumbnail-list <?php if ($image->pid == $current->pid) echo 'selected' ?>" >
<a href="<?php echo $image->pidlink ?>">
<img src="<?php echo $image->thumbnailURL ?>" alt="<?php echo $image->alttext ?>" />
</a>
</li>
<?php endforeach; ?>
I want to increase the thumbnail image size of nggallery carousel template. Check this link http://arkamediaworks/rel_test/uncatagorize/hello-2/?pid=6 is there any better code to do it. Here, is the code:
<!-- Thumbnail list -->
<?php foreach ( $images as $image ) : ?>
<?php if ( $image->hidden ) continue; ?>
<?php $subnavi[] = $image->pidlink ;?>
<li id="ngg-image-<?php echo $image->pid ?>" class="ngg-thumbnail-list <?php if ($image->pid == $current->pid) echo 'selected' ?>" >
<a href="<?php echo $image->pidlink ?>">
<img src="<?php echo $image->thumbnailURL ?>" alt="<?php echo $image->alttext ?>" />
</a>
</li>
<?php endforeach; ?>
Share
Improve this question
edited Aug 8, 2013 at 13:25
Marin Bînzari
1,05213 silver badges20 bronze badges
asked Aug 8, 2013 at 11:33
Saikumar TallaSaikumar Talla
11 bronze badge
1 Answer
Reset to default 0I'm not sure if I understand you right, but this is how you can do it:
<img src="<?php echo $image->thumbnailURL ?>"
alt="<?php echo $image->alttext ?>"
width="your_width_in_pixels"
height="your_height_in_pixels" />
If this is the anwer then it's not related to Wordpress but to HTML! Have a nice day.
本文标签: plugin nextgen galleryHow to increase the thumnail size of nggallery carousel template
版权声明:本文标题:plugin nextgen gallery - How to increase the thumnail size of nggallery carousel template 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744649745a2617614.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论