Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #319293

    Hi,

    is there a easy way to modified the ajax portfolio like the way in the choices theme? I want the active Portfolio been colored and the inactice grayscaled.

    Thanks in advance.

    Kind regards.
    Björn

    #319296

    Hi Beggers!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .grid-links-ajax .image-overlay {
    display: none!important;
    }
    .grid-links-ajax img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    }
    .grid-links-ajax img:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    Regards,
    Yigit

    #319479

    Thanks Yigit. Now the actice in ajax is colored. but i want also the actice under the ajax been colored. in choices it works. please see me site: http://www.eggers-eisenwaren.com. for example: when the first logo is active (simpson) the image under the ajax should be colored.

    thanks in advance.

    kind regards.

    björn

    #319627

    Hey!

    You can use this for the active portfolio item:

    .active_portfolio_item img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    Regards,
    Ismael

    #321807

    Thanks, it already works. And what code i have to use if i want to use the grayscale at the partner logo element instead of the portfolio?

    thanks in advance.

    kind regards.

    björn

    #321866

    Hey!

    Please add following code to Quick CSS as well

    .avia-logo-element-container  .image-overlay {
    display: none!important;
    }
    .avia-logo-element-container img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    }
    .avia-logo-element-container img:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.