No navbr on Mobile Version?
2 posters
Page 1 of 1
No navbr on Mobile Version?
I'm using this code to make the navbar sticky but there is a problem when you view the forum on mobile version there is no menu from mobile version, so you can't use the web version from the mobile itself?
My forum https://forumservice.forumotion.com/
My forum https://forumservice.forumotion.com/
- Code:
$(document).ready(function(){
var num = $(".navbar").offset().top;
$(window).bind('scroll', function() {
if ($(window).scrollTop() > num) {
$('.navbar').addClass('sticky');
}
else {
$('.navbar').removeClass('sticky');
}
});
});
Last edited by Mati on October 6th 2023, 2:14 pm; edited 1 time in total
Re: No navbr on Mobile Version?
Good afternoon!
You can add a check for the user's screen width. If more than 900px (tablets can be this wide) - the code works.
You can add a check for the user's screen width. If more than 900px (tablets can be this wide) - the code works.
- Code:
$(document).ready(function(){
const widthOfScreen = window.innerWidth;
if (widthOfScreen > 900) {
var num = $(".navbar").offset().top;
$(window).bind('scroll', function() {
if ($(window).scrollTop() > num) {
$('.navbar').addClass('sticky');
}
else {
$('.navbar').removeClass('sticky');
}
});
}
});
Razor12345- Support Moderator
- Posts : 1586
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Mati likes this post
Razor12345- Support Moderator
- Posts : 1586
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Similar topics
» How to get personal widgets available for mobile version and mobile version link.
» How To Force Your Desktop Version Theme "Colors And Banner" To Be Used In The Mobile Version?
» Display a mini-version of user avatars in posts in the mobile version?
» Mobile Registration page / New Mobile Theme Version
» problem (Mobile version) and (computer version)
» How To Force Your Desktop Version Theme "Colors And Banner" To Be Used In The Mobile Version?
» Display a mini-version of user avatars in posts in the mobile version?
» Mobile Registration page / New Mobile Theme Version
» problem (Mobile version) and (computer version)
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum