Here is my website: http://rsvp.com.hk/tmp_web/
What I would like to achieve is resize the whole site to 67% and align it to top. If you open the developer mode , there is a "container" class, I have specific the
transform:scale(0.67,0.67);
-ms-transform:scale(0.67,0.67); /* IE 9 */
-webkit-transform:scale(0.67,0.67); /* Safari and Chrome */
on it, then the absolute item is not "fix" on the screen , that means, without transform , when I resize the browser window, the text,and the image do not move along with the screen, but after using transform , it will. How to fix this?
Also, how to align the "container" to the top? Thanks for helping