tags:

views:

19

answers:

1

I have a very simple question.

I recently develop this site: http://revenuephilosophy.eu/ and I noticed that when I use the scroll zoom(ctrl+mouse wheel) on other sites it works great but on mine it has a strange behavior with not all of the components scalling as they should.

On the css file I used only percentages in order to keep resolutions/size problem to minimum...but I don't know if that has anything to do with the present problem. Thanks in advance.

PS: css file is on hxxp://revenuephilosophy.eu/css/style.css

+1  A: 

you have the width 100% on the css of the classes (for example images). This is your problem. Use width:auto; and will resize them too

Sotiris