Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] how to align div horizontally Reply To: how to align div horizontally

#151160
Paulie_D
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%;
}

http://codepen.io/Paulie-D/pen/usFio