Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #563236

    Hey,
    http://www.raboff.com/new-work/
    I have two questions:
    Can I move the Caption more to the left?
    On the first image I have choice Left Framed but I want it to be more to the left.

    Is it possible to X = delete mark on Caption?

    Thanks
    Charlotte

    #563255

    Hi Charlotte!

    Please add following code to Quick CSS

    .caption_left .slideshow_caption { padding-left: 0; }

    Not sure if i understood second question. Can you please elaborate?

    Cheers!
    Yigit

    #563261

    Hi Yigit.

    1. Thanks :)

    2. If you can click on the caption some how so it will be deleted

    Cheers
    Charlotte

    #563283

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_code(){
    ?>
    <script>
    jQuery(document).ready(function(){
    jQuery(".slideshow_caption").click(function (e) {
      jQuery(".slideshow_caption").fadeToggle("fast");
    });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_code');

    Please add following code to Quick CSS as well

    .caption_left .slideshow_caption {
        left: -50px;
    }

    Best regards,
    Yigit

    #563307

    Hello again.

    1. If I want the caption to be on the left hand side but I bit more down, see image

    What code shall I add?

    Thanks!
    Caption

    #563322

    Hey!

    Please add following code to Quick CSS as well

     .slideshow_align_caption {
        vertical-align: bottom;
    }

    Best regards,
    Yigit

    #563330

    Thanks..

    sorry being difficult but if I want to move the caption up a little bit – what code shall I add?

    #563345

    Hey!

    Please add following one

    .slideshow_align_caption {
        bottom: 100px;
    }

    Cheers!
    Yigit

    #564488

    Thanks :)

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Placement of Caption on fullwidth slider’ is closed to new replies.