문제

Hello Actually i'm using jquery responsiveslides from Responsive slides

how can i add text for each slide like in this can some one point me in right direction

도움이 되었습니까?

해결책

You can do like this.

HTML:

<ul class="rslides" id="slider">
    <li>
      <a href="#"><img src="images/mainimg1.jpg" alt=""></a>
    </li>
    <li>
      <img src="images/mainimg2.jpg" alt="">
      <div class="gallerycon">
        <h1>Your Title</h1>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting</p>
      </div>
    </li>
</ul>

CSS:

.gallerycon{
    position:absolute;
    top:30%;
    right:40%;
    z-index: 3;
    width:60%;
    height:400px;
} 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top