Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • skillfulken Friend
    #191694

    Hello

    I have set the thumbnail width and height both at 0, however, there are still some white blocks above the blue circles. Is there any method to show only those blue circles but not the thumbnail at the same time? Thanks!

    Ninja Lead Moderator
    #510349

    It would be great if you can include url of your site, an illustrated screenshot of what you are trying to achieve, It would help to understand the issue and give you specific answers.

    skillfulken Friend
    #510597

    Hi Ninja!

    Just want to keep the fancy blue circle but not the white thumbnail. Thanks!


    1. screen_cap_1
    2. screen_cap_2
    Ninja Lead Moderator
    #510662

    You can hide it by css style as below

    Open templates/ja_beranis/css/mod_jaslideshowlite.css file

    from


    .ja-ss-thumbs .ja-ss-thumb img {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    position: absolute;
    top: -75px;
    left: -10px;
    padding: 5px;
    background: #fff;
    max-width: none !important;
    }

    change to


    .ja-ss-thumbs .ja-ss-thumb img {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    position: absolute;
    top: -75px;
    left: -10px;
    padding: 5px;
    background: #fff;
    max-width: none !important;
    display: none;
    }

    skillfulken Friend
    #510723

    It works great! Thanks Ninja!

    Can I also not display the white triangle?


    1. screen_cap_3
    Ninja Lead Moderator
    #510820

    Here is solution:

    Open templates/ja_beranis/css/mod_jaslideshowlite.css file

    From


    .ja-ss-thumbs .ja-ss-thumb:hover span:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    position: absolute;
    margin-left: 5px;
    top: -5px;
    }

    Change to

    .ja-ss-thumbs .ja-ss-thumb:hover span:before {
    content: "";
    width: 0;
    height: 0;
    }

    skillfulken Friend
    #511214

    Hi Ninja

    Done and it works great! Thanks for your help!

Viewing 7 posts - 1 through 7 (of 7 total)

This topic contains 7 replies, has 2 voices, and was last updated by  skillfulken 11 years ago.

We moved to new unified forum. Please post all new support queries in our New Forum