• Resolved Kristad

    (@kristad)


    Hi I am trying to hide the dots and arrows. I put dots=”false” arrows=”false” – the arrows are hidden but the dots are not.

    My test page is http://sopafinearts.com/new/test-4/

    Can you tell me how to hide the dots. This is my short code:
    [logoshowcase limit=”-1″ cat_id=”4″ cat_name=”Support”
    slides_column=”6″ slides_scroll=”2″ autoplay=”true”
    autoplay_interval=”300″ speed=”2000″ loop=”true” center_mode=”true”
    dots=”false” arrows=”false” link_target=”blank” show_title=”false” image_size=”original”
    order=”DESC” orderby=”post_date” start_slide=”1″]

    Thank you…

    https://wordpress.org/plugins/wp-logo-showcase-responsive-slider-slider/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Anoop Ranawat

    (@anoopranawat)

    Hello,

    There is some conflict with plugin css with some other css.
    Please add following css in your theme style.css file

    ul.logo_showcase li.slick-slide::before{background:none !important}

    Plugin Author Anoop Ranawat

    (@anoopranawat)

    Complete short-code is just given for reference. Kindly use the parameter that you need and the parameter you do not want delete theme.

    Note: When you copy and paste complete shortcode, Please remove line break form the shortcode when you paste in WordPress editor.

    Thread Starter Kristad

    (@kristad)

    Thanks for your quick response.

    I put what you said into the theme style.css
    ul.logo_showcase li.slick-slide::before{background:none !important;}

    I also removed the line break from the shortcodes.

    I removed the parameters of arrows and dots as you suggested and now both are showing…

    How do I remove the dots between the images?

    Thank you 🙂

    Plugin Author Anoop Ranawat

    (@anoopranawat)

    Hello,

    You theme css creating these dots

    article ul li::before {
        background: #333 none repeat scroll 0 0;
        border-radius: 50%;
        content: "";
        display: block;
        float: left;
        height: 6px;
        left: 8px;
        position: absolute;
        top: 9px;
        width: 6px;
    }

    Please add the following css in your theme style.css file

    .logo_showcase li.slick-slide::before {
        background: none !important;
        display: none !important;    float: left;
        height: 0px !important;
        left: 0px !important;
        top: 0px !important;
        width: 0px !important;
    }

    The dots keep showing when the page is resized

    Plugin Author Anoop Ranawat

    (@anoopranawat)

    Hello wendelrodrigues,

    We will cover this issue in our next update.
    Meanwhile if you want to change immediately than u can follow these steps.

    go to :- plugins\wp-logo-showcase-responsive-slider-slider\includes\logo-showcase-functions.php

    and remove line number 322
    if there is
    dots: true

    Thanks, worked! 🙂

    Plugin Author Anoop Ranawat

    (@anoopranawat)

    Hello wendelrodrigues,

    Glad to know that worked for you.
    We will update the plugin soon.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Dots are showing when trying to hide in WP Logo Showcase Responsive Slider’ is closed to new replies.