I want to add a CSS circle and a box with an up arrow into one of my Divs.
The code for the up arrow is:
.arrow_box {
position: relative;
background: #88b7d5;
}
.arrow_box:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(136, 183, 213, 0);
border-bottom-color: #88b7d5;
border-width: 30px;
margin-left: -30px;
Where do I put this in webflow?
Thanks!