html - Responsive website not responding over multiple browsers -
okay having serious issue have never come across ever before. cant figure out issue.
i made website both fluid , responsive. make websites first on chrome , fix issues in ie , firefox, along other browsers aswell.
my website functional on chrome. see responding change in browser width. when site complete , time shift check issues on other browsers. shocked see not responding on browser other chrome.
any appreciated.
you can check out website, http://demos.affixy.com/travelagents/
i sorry forgetting include link demo site.
possibilities based off limited information...
you have 2 declarations ipad media query in css, 1 portrait, 1 landscape, yet values of media query same. despite that, there typo on media query of both:
you have: @media ((max-width: 1024px) {
should be: @media (max-width: 1024px) {
these on lines 612 , 675 of style.css
likely guy chrome detecting error , fixing you, other browsers detecting error , well.. erroring out.
Comments
Post a Comment