Portfolio Pages: jumping and sticking on scroll

HI,

I am using the portfolio as a blog. I am experiencing a strange bug. When I am inside a portfolio item and scroll, the header sticks and jumps to the top of the featured image. This is kind of hard to describe, but if you visit on e of the pages, you can see the bug. Please let me know if there is any way to fix this. Info in secure form. Thanks so much!

Hi There,

Thanks for writing in!

The issue you have pointed out is a known bug and its already in our issue tracker list. Our development team would be looking for a fix.

Mean while you use this custom CSS to fix the issue.

.single-x-portfolio .masthead-inline {
    position: fixed;
    width: 100%;
    z-index-9;
}

.single-x-portfolio  .x-main.full {
margin-top: 75px;
}

@media only screen and (max-width: 895px) {
.single-x-portfolio .masthead-inline {
    position: relative !important;
}
.single-x-portfolio  .x-main.full {
margin-top: 0px !important;
}
}

Please add this to your Theme Option -> Global css
Remember this CSS only works in single portfolio page. If you want to make it global please remove the .single-x-portfolio from the css.
Hope this helps!
Thanks

Thanks so much!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.