I have a dynamically generated list of divs and have the odd ones aligned to the left and the even ones to the right. When I get to the bottom of the page, I use Ajax to load more divs. For some reason, when the new divs are loaded, they aren't always aligned to the left as I had expected. I have tried setting the maximum number of divs per batch to be both odd and even and still I cannot get the to fall left and then right every time. Can anyone assist?
.cd - timeline - content {
margin - left: 0;
padding: 1.6e m;
width: 45 % ;
}
.cd - timeline - content::before {
top: 24 px;
left: 100 % ;
border - color: transparent;
border - left - color: white;
}
.cd - timeline - content.cd - read - more {
float: left;
}
.cd - timeline - content.cd - date {
position: absolute;
width: 100 % ;
left: 122 % ;
top: 6 px;
/*font-size: 16px;
font-size: 1rem;*/
}
.cd - timeline - block: nth - child(even).cd - timeline - content {
float: right;
}
.cd - timeline - block: nth - child(even).cd - timeline - content::before {
top: 24 px;
left: auto;
right: 100 % ;
border - color: transparent;
border - right - color: white;
}
.cd - timeline - block: nth - child(even).cd - timeline - content.cd - read - more {
float: right;
}
.cd - timeline - block: nth - child(even).cd - timeline - content.cd - date {
left: auto;
right: 122 % ;
text - align: right;
}
The below shows the HTML structure for 4 items being displayed, 2 loaded initially and then the second 2 loaded after selecting the "load more" button.
<div class="cd-timeline-block activity new_file activity-item date-recorded-1428500701" id="activity-205">
<div class="cd-timeline-img cd-file">
<span class="dashicons dashicons-media-text"></span>
</div>
<div class="cd-timeline-content">
<span class="cd-date">8 April, 2015</span>
</div>
</div>
<div class="cd-timeline-block activity new_file activity-item date-recorded-1428500701" id="activity-204">
<div class="cd-timeline-img cd-file">
<span class="dashicons dashicons-media-text"></span>
</div>
<div class="cd-timeline-content">
<span class="cd-date">8 April, 2015</span>
</div>
</div>
<div class="cd-timeline-block activity new_file activity-item date-recorded-1428500701" id="activity-203">
<div class="cd-timeline-img cd-file">
<span class="dashicons dashicons-media-text"></span>
</div>
<div class="cd-timeline-content">
<span class="cd-date">8 April, 2015</span>
</div>
</div>
<div class="cd-timeline-block activity new_file activity-item date-recorded-1428500701" id="activity-202">
<div class="cd-timeline-img cd-file">
<span class="dashicons dashicons-media-text"></span>
</div>
<div class="cd-timeline-content">
<span class="cd-date">8 April, 2015</span>
</div>
</div>
<li class="load-more"><a href="/admin-ajax.php?acpage=3">Load More</a></li>