Hello,
We definitely agree with this. Actually, this was created like this in the First Place. However, the position of the Buttons can be definitely changed. Please find the following steps:
- Find and Delete the following CSS Block in the css/style.css File:
.entry.entry-date-section + .entry .entry-timeline { top: 70px; }
- Please add the following code in the js/functions.js File replacing the entire blogTimelineEntries: function() Function Block:
blogTimelineEntries: function(){
$('.post-timeline.grid-2').find('.entry').each( function(){
var position = $(this).inlineStyle('left');
if( position == '0px' ) {
$(this).removeClass('alt');
} else {
$(this).addClass('alt');
}
$(this).find('.entry-timeline').fadeIn();
});
$('.entry.entry-date-section').next().next().find('.entry-timeline').css({ 'top': '70px' });
},
This will definitely fix the Issue with Ordering. Let us know if we can help you with anything else or if you find any further issues.