• I use slider gallery and works pretty well, but on mobile is confusing. How to switch it off on mobile only? I use only the plug in, not the shortcode.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author richteam

    (@richteam)

    Dear decomeria.

    Thanks for the question.

    Our team checked the problem. But we don’t see any problem with our plugin. Your main page has a responsive problem. Not only our plugin but the weight of the site is not working correctly. But when we open other pages, everything works fine there and the slider and page weight. Please check what you used on the main page that everything in mobile versions does not work correctly.

    Thanks.

    Thread Starter decomeria

    (@decomeria)

    All works fine with the slider, but I do not want to display it on mobile. It is not a problem, but my question about this option (sorry if I form the question unclear). Only on the desktop. Is there an easy way to do it in settings for example??? (the weight problem I know).

    Plugin Author richteam

    (@richteam)

    You have to enter in Rich-Web_Slider-Widget.php

    in line 15969 finde a code

    .mis-slider_<?php echo $Rich_Web_Slider_Manager[0]->id;?> li img {
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    }

    <?php }?>

    and after it, between this code and </style>

    adding a code

    @media screen and (max-width: 768px) {
    .rw_fl_slider_figure<?php echo $Rich_Web_Slider_Manager[0]->id; ?> {
    display: none;
    }
    }

    Thanks.

    Thread Starter decomeria

    (@decomeria)

    Hi There, unfortunately I cannot use your code as I do not have 15969 lines in my code and I do not have this code in the css theme. Could you please be more specific with the code – where to place it in my theme css?
    Thanks

    Plugin Author richteam

    (@richteam)

    Dear decomeria.

    for solving your problem you have to enter in Rich-Web_Slider-Widget.php

    <?php } else { ?>
    .mis-slider_<?php echo $Rich_Web_Slider_Manager[0]->id;?> li img {
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    }

    <?php }?>

    and after it, between this code and </style>

    adding a code

    @media screen and (max-width: 768px) {
    .rw_fl_slider_figure<?php echo $Rich_Web_Slider_Manager[0]->id; ?> {
    display: none;
    }
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How not to display the slider on mobile?’ is closed to new replies.