• Hello,
    i’m trying the last 4 days to find an image slider to present some images 5-10images in a way like this slider here http://jquerytools.org/demos/scrollable/index.html and when user clicks on an image to open it up like a lightbox.
    None of the sliders i try could do me this simple task.
    Please can someone tell me which plugin to install and accomplish it?
    Thank you in advance!

Viewing 1 replies (of 1 total)
  • Any one can help me?

    I have a website in which a fullpage width custom jquery slider , for slider i have create a custom post type “Slider”. In slider text/content is on left side and image is on right side like this http://tympanus.net/Development/ParallaxContentSlider/

    Now my client want that 2 images show full width slider without content and the others are shown like by default below is my slider code , please help me as soon as possible

    <div id=”da-slider” class=”da-slider”>

    <?php wp_reset_query();?>
    <?php query_posts( array( ‘post_type’ => ‘slider’ ) );?>
    <?php if (have_posts() ) : while (have_posts() ) : the_post();?>
    <?php $src=wp_get_attachment_image_src(get_post_thumbnail_id($post->ID),’full’);?>
    <div class=”da-slide”>
    <div class=”da-img”><img src=”<?php echo $src[0];?>” alt=”<?php the_title();?>” /></div>

    <?php $title=get_the_title($post->ID); ?>
    <h2><?php echo add_span_to_title($title); ?></h2>
    <p> <?php the_content();?></p>

    </div>

    <?php endwhile;endif;?>
    </div>
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘image slider problems’ is closed to new replies.