Hi there,
You can change the display order by making use of CSS flex directives.
For example:
.time_circles > div {
display: flex;
flex-direction: column-reverse;
}
.time_circles > div > h4 {
margin: 0px;
padding: 0px;
text-align: center;
text-transform: inherit;
font-family: "Montserrat", Sans-serif;
font-weight: 300;
margin-top: 1em;
font-size: 12px !important;
}
.time_circles > div > span {
display: block;
width: 100%;
text-align: center;
font-family: "Montserrat", Sans-serif;
font-size: 17px !important;
margin-top: 0px;
}
You’re welcome ??
-
This reply was modified 6 years, 4 months ago by hdinvest.