MeltedC Posted November 21, 2014 Share Posted November 21, 2014 (edited) Hi there, I find that the default theme of PrestaShop shows too big elements, police size, etc... so I always browse on my website using a zoom 90% (more comfort, more information on the sreen, less scrolling, it is much better in my opinion). So, is there any simple way to give it the zoom-90% appearance ? Edited November 22, 2014 by MeltedC (see edit history) Link to comment Share on other sites More sharing options...
Porfa Posted November 23, 2014 Share Posted November 23, 2014 (edited) This is not recomended because of design lazyness... add : zoom: 0.9;-moz-transform: scale(0.9);-moz-transform-origin: 0 0;to your global.css line 297 html { font-size: 62.5%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); to: html { font-size: 62.5%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); zoom: 0.9; -moz-transform: scale(0.9); -moz-transform-origin: 0 0; works for firefox, might need synthax for chrome or other browsers. Edited November 23, 2014 by Porfa (see edit history) Link to comment Share on other sites More sharing options...
MeltedC Posted November 23, 2014 Author Share Posted November 23, 2014 Thanks ! I just added -webkit-tap-highlight-color: rgba(0, 0, 0, 0); zoom: 0.9; And it works for Chrome and FireFox. Fair enough for now If any of you has a solution for all the browsers (i did not try on mobile device by the way), which would respect the best practices... I'm afraid someone says I have to rewrite all the CSS... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now