Help! Diferrent position in IE

Hello, my website ηλεκτρικοί διάδρομοι looks different in IE.
(different position on the left side of screen)
Is there anyway to fix this problem?

Thank you in advance

Hi dimitris_adoniou. Welcome to the SitePoint forums. :slight_smile:

The problem seems to be caused by

.clearfix {display: inline-block;}

What happens if you remove that? Instead of clearfix, you can just apply overflow: hidden to most containers.

I agree with ralph about using overflow: hidden as it’s compatible with all browsers except IE6 which requires a relative position or zoom: 1 to clear the floats but apart from that clearfix is starting to be phased out as a fix because of it’s redundancies.

Thank you both very much! You solved my problem. :slight_smile: