-
AuthorPosts
-
October 3, 2015 at 4:24 am #513089
I have a client who would like to know whether it is possible to do the following. As I was unable to find the answers in the forum, I wonder if you may be able to help please:
1. In a full page slideshow, once a person clicks on the arrow to take them to the next slide, the slideshow automatically stops. Is there any way it can be set up so that it would restart again?
2. Blog feed formatting – please see http://theepicureanarchitect.com/ (scroll down below heading “This is what it’s all about”)
– Is there a way to reduce space between columns in a Blogfeed Grid,
– How can blog post headings be centred in the feed (I’ve only managed to centre the excerpt text)
– How can number of comments be removed from below the heading and just date be kept?Many many thanks
IvanaOctober 5, 2015 at 6:20 am #513485Hey Ivana!
Thank you for using Enfold.
1.) This is possible but you have to modify the js > shortcodes.js file. Look for this code around 4627:
// public method: shows next image next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); },
.. replace it with:
// public method: shows next image next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); this.play(); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); this.play(); },
2.) Add this in the Quick CSS field:
.avia-content-slider .slide-entry { width: 24%; margin-left: 1%; } .slide-meta-comments, .slide-meta-comments + * { display: none !important; }
Regards,
IsmaelOctober 5, 2015 at 7:29 am #513507Ismael, you are wonderful. Thank you. I have done as suggested and it is all working.
I greatly appreciate your help.
Ivana
October 5, 2015 at 9:58 am #513576 -
AuthorPosts
- The topic ‘Formatting blog feed’ is closed to new replies.