1

Drupal 7 と Field Slideshow プラグインを使用しています。スライドと作業を公開しました。それはページャーを持っていて、その名前は「Prev」と「Next」です

私はテキストが欲しくありません、イメージしなければなりません。どうすればできますか?

<div id="field-slideshow-<?php print $slideshow_id; ?>-controls" class="field-slideshow-controls">
  <a href="#" class="prev"><?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"><?php print t('Next'); ?></a>
</div>
4

1 に答える 1

1
<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>
于 2012-12-27T10:29:14.577 に答える