Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #297881

    Hallo,

    Zuerst vielen Dank für die super Arbeit, ich bin sehr zufrieden mit der Theme Enfold.
    zu meiner Frage:
    Ist es möglich in Enfold den mouse over Effekt bei Bildern wie bei dem Theme Eunoia einzustellen?
    Gewünscht wäre das Bild in grau und wenn man mit der Maus das Bild aktiviert wird es farbig.

    vielen Dank im Voraus

    LG
    Johannes

    #297995

    Hallo Johannes!

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

    .grid-entry .inner-entry {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    }
    .grid-entry .inner-entry:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    This code will make portfolio grid elements grayscaled. Please also note that it may not be cross browser solution.

    Best regards,
    Yigit

    #298143

    Hy Yigit,
    wow -what a fast answer & the solution! Great!
    thank you for your help and for the code – it works perfect for me.

    Kind regards
    Johannes

    ps. Page is not finished but it makes fun to do it already!
    http://www.adam-architektur.at

    #298220

    Hi!

    You are welcome Johannes, glad we could help!
    Your website looks great :)

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Bilder mit "mouse-over" Effekt’ is closed to new replies.