Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallax bug in Chrome browsers #48

Open
ozasadnyy opened this issue Oct 26, 2014 · 0 comments
Open

Parallax bug in Chrome browsers #48

ozasadnyy opened this issue Oct 26, 2014 · 0 comments
Labels

Comments

@ozasadnyy
Copy link
Member

With last chrome update you can see bad displaying of parallax sections.
So here is some quick fix:
Better way:
Edit /_sass/partials/_helper.scss

.image-section {
    color: #fff;
    font-weight: $light;
    background-repeat: no-repeat;
    background-position: center center !important;
    background-size: cover !important;
    &.parallax {
        // background-attachment: fixed; 
        box-shadow: inset 0 0 12px 3px rgba(0, 0, 0, .75);
    }
    &.standart-height {
        min-height: 500px;
    }
}

Delete or comment background-attachment: fixed; in &.parallax { .. }

Simple way:
Remove parallax class on sections where they are.
Note: with this solutions you will remove box-shadow on that sections.

@ozasadnyy ozasadnyy added the bug label Oct 26, 2014
willi84 added a commit to anacidre/zeppelin that referenced this issue May 26, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant