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
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
Hi Yigit.
1. Thanks :)
2. If you can click on the caption some how so it will be deleted
Cheers
Charlotte
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
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!
Hey!
Please add following code to Quick CSS as well
.slideshow_align_caption {
vertical-align: bottom;
}
Best regards,
Yigit
Thanks..
sorry being difficult but if I want to move the caption up a little bit – what code shall I add?
Hey!
Please add following one
.slideshow_align_caption {
bottom: 100px;
}
Cheers!
Yigit
Thanks :)