Hi there,
you can try this
.slide .slide-content{
display:none;
}
then open part-slider.php and replace
<?php the_post_thumbnail( 'ci_slider' ); ?>
with
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'ci_slider' ); ?></a>
Use the default editor if you have the latest WordPress version and navigate to the /themes/olsenlight/ folder to find the file.
If you decide to proceed with this modification I would suggest you create a child theme, copy over the files you are editing and make the modifications there. This will allow your changes to survive future theme updates. If you directly edit the theme’s files, all changes will be lost once you update.
Have a look at this guide to learn more about child themes and how to create one
http://www.cssigniter.com/ignite/beginners-guide-child-themes/
-
This reply was modified 8 years, 3 months ago by
Fotis.
Thanks for the help but all it did was make the box smaller.
I’m assuming the first code (listed below) goes in Additional CSS?
.slide .slide-content{
display:none;
}
Update // Just realized that in order for it to work, I needed to ‘hide post content box’. I’m very happy with it now, thank you very much!
-
This reply was modified 8 years, 3 months ago by
veyroniqa.
-
This reply was modified 8 years, 3 months ago by
veyroniqa.
Glad I could help!
I’d like to ask you, if you like the theme and could take a minute to review it here it would help us a lot!
Hi, sorry to reopen this and bother you once more but I was wondering if it was possible to make the pictures on the carousel clickable through to the post?
Hi there,
did my recommendation above worked?
Oh! The code must have reverted when I updated the theme. I’ve just redone what you suggested above and everything’s working perfectly fine now. Thanks!