Home › Forums › CSS › [Solved] how to align div horizontally › Reply To: how to align div horizontally
September 25, 2013 at 2:41 am
#151160
Member
You would have to find the parent element of the fees_box_bottom
divs and give it/them a position:relative property.
Unfortunately, you have so many IDs and specifically named classes that it’s hard to give direct advice as what each parent is called…I’ll leave that to you.
Then add this to
.fees_box_bottom {
position:absolute; /* added this */
bottom:0;
width:100%;
}