Home › Forums › CSS › How to adapt a popup function to icon areas? › Reply To: How to adapt a popup function to icon areas?
December 15, 2013 at 12:16 am
#158382
Inactive
Paulie_D,
I fixed the alignment problem by changing this
}
ul.contacticons {
font-size: 0;
margin: 0 auto 25px;
}
To this
}
ul.contacticons {
font-size: 0;
margin: 0 auto 25px;
float: left;
text-align: center;
}
I still need answers to the IE8 and DW issues though.
Thank you.