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

How to make the list appear on Tablet View

Enthusiast ,
May 03, 2019 May 03, 2019

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

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

}

});

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

}

});

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
Translate
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
LATEST

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

Translate
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

your JS set display:none under 1024px

Translate
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