2 years, 10 months ago
#35441
::
Hi Aditya,
i don’t have a good answer for this, the only way i found that works is with css for the specific element that you want to have at the bottom.
My solution is to create a css class that moves that element absolutly:
.myclass{
top: 842px;
transform: translate(50%,-50%);
right:50%;
position: absolute;
}
Adjust the top pixels by your favor
Maybe someone else has a better option then me.