The CSS that I wrote for the header is not working well on safari but it is working on the other web browsers.
The problem that I am having is that on chrome, etc. the margin-top
from my logo is on -30px
but on Safari it needs to be -15px
I have already tried a few things but it is not taking me anywhere. This is a example of what I have tried:
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Safari and Chrome */
.header-center-items {
margin-top: -30px;
}
/* Safari only override */
::i-block-chrome,.header-center-items {
margin-top: -15px !important;
}
}