It looks like the two announcement boxes are overlaying because they are a bit smaller than the others. I’m currently working on a way to prevent this from happening, but in the meantime you can adjust the default distance between the two containers using the provided CSS selectors. By default the distance is set to -3.5em, but you can set it to -2.5em or greater.
Something like the following should do the trick :
.cd-timeline-block {
margin-top: -2.5em; /* or another value of your choosing */
}
You may need to add an !important tag, to override the default. You would just add -2.5em !important;
to the code above. You also may need to adjust it till it works for your site, -2.5em may not do it.
You’ll want to add that code to your active theme style.css file. You can get to that either through FTP or through the themes edit menu. I recommend the former, as you’ll have greater control.
Let me know if that helps resolve things.
Thanks,
Evan