Answered
How to make the list appear on Tablet View
Hi,
The list is seen on the Desktop View.
But it is not seen on the Tablet View.
How to make it appear on the Tablet View?
Link
Hosun Kang

Hi,
The list is seen on the Desktop View.
But it is not seen on the Tablet View.
How to make it appear on the Tablet View?
Link
Hosun Kang

You are hiding the navigation here
$(window).resize(function(){
var width = $(document).width();
if (width > 1024) {
$('.site-nav').show();
}
else if (width < 1024) {
$('.site-nav').hide();
}
});
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.