• Resolved spiderbjosh

    (@spiderbjosh)


    Hi thanks for this great plugin.

    My issue is, the previous and next arrow buttons are automatically hidden when the cursor does not hover over the carousel. I’d like for the buttons to always show whether the carousel is hovered or not. How is this possible? I’ve checked css file and haven’t found solution. Thanks.

    https://wordpress.org/plugins/kiwi-logo-carousel/

Viewing 1 replies (of 1 total)
  • Thread Starter spiderbjosh

    (@spiderbjosh)

    I’ve found the solution to this. It was in the “custom-styles.css” file.

    Change this

    .bx-wrapper .bx-controls {
    	opacity:0;
    	transition:500ms;
    	-webkit-transition:500ms;
    	-moz-transition:500ms;
    }

    to this

    .bx-wrapper .bx-controls {
    	opacity:1!important;
    	transition:500ms;
    	-webkit-transition:500ms;
    	-moz-transition:500ms;
    }

    in your styles.css file.

Viewing 1 replies (of 1 total)
  • The topic ‘Make prev/next buttons always visible’ is closed to new replies.