Forums

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

Home Forums CSS How to adapt a popup function to icon areas? Reply To: How to adapt a popup function to icon areas?

#158382
Anonymous
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.