Firefox/Edge/IE vs Chrome, renders CSS differently
-
If you look at my Front Page in Chrome, it shows the top image the way I would like it to appear (short, like the other pages) whereas in Firefox and Edge/IE it still shows it filling the page (or worse in a very strange layout). There’s some glitch in my CSS??
For starters, this code seems to render differently depending on browser:
.background-fixed .panel-image {
background-attachment: fixed;
}This code seems to work in Chrome but NOT Firefox/Edge/IE:
@media screen and (min-width: 48em) {
.twentyseventeen-front-page.has-header-image .custom-header-media,
.home.blog.has-header-image .custom-header-media {
min-height: 100px;
height: 185px; /* changed from auto */
}.twentyseventeen-front-page.has-header-video .custom-header-media {
height: 10vh; /* 100vh */
}
}Is there any CSS that will work cross-browser for stopping the front image from being full height? Many thanks for any help.
The page I need help with: [log in to see the link]
- The topic ‘Firefox/Edge/IE vs Chrome, renders CSS differently’ is closed to new replies.