Is there a fix for IE 11? screenshot http://fightpompe.com/bootsnip.png
juanbkm () - 5 years ago - Reply 0
Hi,
the 4th timeline is not working for me?!
It looks like this:
https://i.epvpimg.com/Uam7aab.png
bennymeier () - 6 years ago - Reply 0
new version, please check : https://bootsnipp.com/user/snippets/35EXB
mylastof () - 5 years ago - Reply 0
You're talking about left, uneven timelines 3-5-7, aren't you? See my answer to follow-up.
palatin8 () - 6 years ago - Reply 0
.timeline .right-bottom {
left: calc(50% - 3px);
top: calc(50% - 3px);
}
hi try this. it work for me
achalakavinda () - 6 years ago - Reply 0
Doesn't that shift the offset to the next section?
I prefer to have a new rule in timeline.css for full vertical lines in uneven sections:
.how-it-works.row .col-2.full-left::after {
height: 100%;
left: 50%;
}
instead of
.how-it-works.row .col-2.full::after {
height: 100%;
left: calc(50% - 3px);
}
Usage:
<div class="col-2 text-center full-left d-inline-flex justify-content-center align-items-center">
Works for me unto section seven, which has an .how-it-works.row .col-2.top::after
palatin8 () - 6 years ago - Reply 0