-
AuthorPosts
-
cymak Friend
cymak
- Join date:
- August 2015
- Posts:
- 44
- Downloads:
- 5
- Uploads:
- 1
- Thanks:
- 7
- Thanked:
- 2 times in 1 posts
August 19, 2015 at 11:24 pm #663015Strange issue on head login bar when scrolling in mobile browsers, in the default js 2 template the top header is jumpy when you scroll to bottom of page and back up again, also if you scroll back up from half way down a page. Homepage is fine but all other pages are jumpy, can this be fixed? Thanks
Or alternatively can I get the header not to scroll or stay stickied when scrolling? Thanks
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 20, 2015 at 3:50 am #663115You can use this way to solve the problem on your site
Open templates/ja_social_ii/css/custom.css file and add new rule
@media (max-width: 767px) {
.scrollDown .t3-header {
top: 0px;
}
}
cymak Friendcymak
- Join date:
- August 2015
- Posts:
- 44
- Downloads:
- 5
- Uploads:
- 1
- Thanks:
- 7
- Thanked:
- 2 times in 1 posts
August 20, 2015 at 9:57 am #663206Hi,
I dont have a custom.css in that folder, created one and added code but did nothing, is that the correct path? Thanks
cymak Friendcymak
- Join date:
- August 2015
- Posts:
- 44
- Downloads:
- 5
- Uploads:
- 1
- Thanks:
- 7
- Thanked:
- 2 times in 1 posts
August 20, 2015 at 10:01 am #663208Hi,
I can see that it is stickied but still jumpy unlike the frontpage, thanks
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 21, 2015 at 4:51 am #663874<em>@cymak 488295 wrote:</em><blockquote>Hi,
I can see that it is stickied but still jumpy unlike the frontpage, thanks</blockquote>
In this case, I hope you accept that solution before the home page effect is working with js script and my solution above only uses css style.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 21, 2015 at 4:51 am #746211<em>@cymak 488295 wrote:</em><blockquote>Hi,
I can see that it is stickied but still jumpy unlike the frontpage, thanks</blockquote>
The homepage is working with JS so it looks smooth like that while it’s pretty hard to use js in this case. Hence, I suggest you change in CSS and hope it’s acceptable.
cymak Friendcymak
- Join date:
- August 2015
- Posts:
- 44
- Downloads:
- 5
- Uploads:
- 1
- Thanks:
- 7
- Thanked:
- 2 times in 1 posts
August 21, 2015 at 10:57 pm #664544Hi,
How do I make the header just normal and not floating at any time, thanks. That will fix the problem 🙂
cymak Friendcymak
- Join date:
- August 2015
- Posts:
- 44
- Downloads:
- 5
- Uploads:
- 1
- Thanks:
- 7
- Thanked:
- 2 times in 1 posts
August 21, 2015 at 10:57 pm #746295Hi,
How do I make the header just normal and not floating at any time, thanks. That will fix the problem 🙂
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 24, 2015 at 3:23 am #664809<em>@cymak 488613 wrote:</em><blockquote>Hi,
How do I make the header just normal and not floating at any time</blockquote>
Your question was a little difficult to understand.
Perhaps a screenshot mock-up of what it is you are wanting to accomplish?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 24, 2015 at 7:45 am #664868<em>@cymak 488613 wrote:</em><blockquote>Hi,
How do I make the header just normal and not floating at any time, thanks. That will fix the problem :)</blockquote>
You can try to use my solution below
Open templates/ja_social_ii/css/custom.css file
find and change
@media (max-width: 767px) {
.scrollDown .t3-header {
top: 0px;
}
}to
@media (max-width: 767px) {
.scrollDown .t3-header {
top: -300px !important;
}
}Hope it helps
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 24, 2015 at 7:45 am #746370<em>@cymak 488613 wrote:</em><blockquote>Hi,
How do I make the header just normal and not floating at any time, thanks. That will fix the problem :)</blockquote>
You can try to use my solution below
Open templates/ja_social_ii/css/custom.css file
find and change
@media (max-width: 767px) {
.scrollDown .t3-header {
top: 0px;
}
}to
@media (max-width: 767px) {
.scrollDown .t3-header {
top: -300px !important;
}
}Hope it helps
cymak Friendcymak
- Join date:
- August 2015
- Posts:
- 44
- Downloads:
- 5
- Uploads:
- 1
- Thanks:
- 7
- Thanked:
- 2 times in 1 posts
August 24, 2015 at 2:25 pm #665006Hi scrolling down is not the issue, its really scrolling up, can I just remove the scrollup scroll down css altogether?
cymak Friendcymak
- Join date:
- August 2015
- Posts:
- 44
- Downloads:
- 5
- Uploads:
- 1
- Thanks:
- 7
- Thanked:
- 2 times in 1 posts
August 24, 2015 at 2:25 pm #746410Hi scrolling down is not the issue, its really scrolling up, can I just remove the scrollup scroll down css altogether?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 25, 2015 at 4:27 am #665084<em>@cymak 488869 wrote:</em><blockquote>Hi scrolling down is not the issue, its really scrolling up, can I just remove the scrollup scroll down css altogether?</blockquote>
If you want to disable the action scrollup and scrolldown on your site, you can add the css style below into custom.css file
@media (max-width: 767px) {
.scrollDown .t3-header {
top: -300px !important;
}
.scrollUp .t3-header {
top: -300px !important;
}
}
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 25, 2015 at 4:27 am #746488<em>@cymak 488869 wrote:</em><blockquote>Hi scrolling down is not the issue, its really scrolling up, can I just remove the scrollup scroll down css altogether?</blockquote>
If you want to disable the action scrollup and scrolldown on your site, you can add the css style below into custom.css file
@media (max-width: 767px) {
.scrollDown .t3-header {
top: -300px !important;
}
.scrollUp .t3-header {
top: -300px !important;
}
}
-
AuthorPosts
This topic contains 31 replies, has 2 voices, and was last updated by cymak 9 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum