• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to make the list appear on Tablet View

Enthusiast ,
May 03, 2019 May 03, 2019

Copy link to clipboard

Copied

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

Roar Cycles 4

Hosun Kang

Q_Dw_13_list.png

Views

326

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 03, 2019 May 03, 2019

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();

}

});

Votes

Translate

Translate
Community Expert ,
May 03, 2019 May 03, 2019

Copy link to clipboard

Copied

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();

}

});

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 03, 2019 May 03, 2019

Copy link to clipboard

Copied

LATEST

youps sorry Ben... I didn't see yours...

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 03, 2019 May 03, 2019

Copy link to clipboard

Copied

your JS set display:none under 1024px

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines