• I want to use something other than the links icon to indicate click through to page on slider. Are there other choices in the plugin? If no, how can I use a different icon?

    Using Master Premium Personal Blog WordPress theme.

    Thanks for any suggestions/help.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author simonpedge

    (@simonpedge)

    Hi, try the following CSS code:

    /* WHITE COLOR SCHEME */
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container .always_visible .sa_slide_link_icon,
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container:hover .sa_hover_buttons .sa_slide_link_icon {
    	background:rgba(0,0,0,0.3) url('IMAGE_URL') no-repeat center center !important;
    }
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container .always_visible .sa_popup_zoom_icon,
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container:hover .sa_hover_buttons .sa_popup_zoom_icon {
    	background:rgba(0,0,0,0.3) url('IMAGE_URL') no-repeat center center !important;
    }
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container .always_visible .sa_popup_video_icon,
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container:hover .sa_hover_buttons .sa_popup_video_icon {
    	background:rgba(0,0,0,0.3) url('IMAGE_URL') no-repeat center center !important;
    }
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container:hover .sa_hover_buttons .sa_slide_link_icon:hover,
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container:hover .sa_hover_buttons .sa_popup_zoom_icon:hover,
    .white .sa_owl_theme .owl-stage .owl-item .sa_hover_container:hover .sa_hover_buttons .sa_popup_video_icon:hover {
    	background-color:rgba(0,0,0,0.8) !important;
    }

    1) Replace ‘IMAGE_URL’ with the URL of your hover image (image must be 30×30 pixels)
    2) Replace ‘.white’ with ‘.black’ if you are using the black colour scheme

    Hello,

    Does this CSS get added to the Custom CSS of the theme via customize?

    Or is there a CSS option within the plugin?

    Plugin Author simonpedge

    (@simonpedge)

    This is your theme’s CSS.

    This CSS will either go into your child theme’s ‘style.css’ file (using ‘child themes’ is the recommended way to develop WP sites), or if your theme offers a custom CSS entry box, then use this.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Want to change link button’ is closed to new replies.