<div id="field-slideshow-<?php print $slideshow_id; ?>-controls" class="field-slideshow-controls">
<a href="#" class="prev"></a>
<?php if (!empty($controls_pause)) : ?>
<a href="#" class="play"><?php print t('Play'); ?></a>
<a href="#" class="pause"><?php print t('Pause'); ?></a>
<?php endif; ?>
<a href="#" class="next"></a>
</div>
和这样的风格:
.prev {
display:inline-block;
width:20px;
height:20px;
background: transparent url('path/to/prev/image.png') no-repeat center center;
}
.next {
display:inline-block;
width:20px;
height:20px;
background: transparent url('path/to/next/image.png') no-repeat center center;
}
或者你可以有这样的东西:
<div id="field-slideshow-<?php print $slideshow_id; ?>-controls" class="field-slideshow-controls">
<a href="#" class="prev"><img scr="path/to/prev/image.png" alt="<?php print t('Prev'); ?>" /></a>
<?php if (!empty($controls_pause)) : ?>
<a href="#" class="play"><?php print t('Play'); ?></a>
<a href="#" class="pause"><?php print t('Pause'); ?></a>
<?php endif; ?>
<a href="#" class="next"><img scr="path/to/next/image.png" alt="<?php print t('Next'); ?>" /></a>
</div>