Utilizing Wordpress with the UDesign theme has allowed me to incorporate iconfonts on my website within small blue boxes. You can view these icons in action on this page:
To achieve this look, I had to customize the CSS by following an online tutorial that initially used circles. By adjusting the border radius, I was able to make them into squares with rounded corners. The custom CSS class named .circle-icon has the following properties:
color: #FFF;
font-size: 2.4em;
background: #018ED7 none repeat scroll 0% 0%;
width: 120px;
height: 120px;
text-align: center;
vertical-align: middle;
padding: 6px;
line-height: 2.6em;
margin-right: 10px;
border-radius: 3px;
While these icons display correctly on Chrome and Firefox, there seems to be an issue with Internet Explorer. The bottom of the box is missing, causing the icon to appear at the bottom with the box being too small. I have attempted to tweak the CSS but have been unsuccessful in resolving the issue. Any guidance on what I might be overlooking, or a more efficient method to center these icons within small blue boxes with rounded corners, would be greatly appreciated. Thank you.