I am working with wordpress Sydney theme, and I am trying to make a responsive website, I realized that it shows different css on different browsers.
here is an example:
chrome
firefox:
here is with chrome again when I try to check the responsiveness:
here is with chrome on a different computer[*] this is how it should look like everywhere:
i am not sure what is causing this to happen, the website is haagsehof.nl.
I have made some custom css for different devices like this for the responsiveness:
@media (min-width:767px){
}
@media (max-width:766px) and (min-width:400px) {
}
@media only screen and (max-width: 399px) {
}
how can make all the browsers in different devices all use the same css format so the website looks alike in every platform?