Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • Pankaj Sharma Moderator
    #1040690

    Hi
    The slideshow has a mask on images
    Open
    /templates/ja_company/acm/slideshow/css/style.css
    Here is code

    
    .slideshow .has-mask:before {
        background-color: rgba(0,0,0,0.5);
        background-image: url(/templates/ja_company/acm/slideshow/images/bg-mask.png);
        background-position: left bottom;
        background-repeat: no-repeat;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    

    You can change the background color value and image to your image.

    Regards

    marco17 Friend
    #1040693

    Hi,

    Many thanks for your reply but i can’t do it.

    I have tried to rename bg-mask.png an put background-color: rgba(0, 0, 0, 0);

    but the opacity is still there.

    Sorry can you tell me how can i do it?

    Many thanks again.

    Marco

    marco17 Friend
    #1040725

    Hi,

    i can do that modify rgba(0, 0, 0, 0); but in the css-3dba8-28656.css. If i modify in style.css nothing happens.

    Marco

    kmgdesign Friend
    #1040733

    try this:

    .slideshow .has-mask::before {
    background-color: rgba(0,0,0,0)!important;
    background-image: none;
    background-position: left bottom;
    background-repeat: no-repeat;    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    }

    put it in – custom.css – in template/css

    marco17 Friend
    #1040744

    Great, it works.

    Many thanks.

    Marco

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

This topic contains 5 replies, has 3 voices, and was last updated by  marco17 7 years, 5 months ago.

The topic ‘How can i remove or modify the opacity in the slideshow images?’ is closed to new replies.