Viewing 4 posts - 1 through 4 (of 4 total)
  • Posted in: Joyn
  • #191422
    Pothe
    Member
    Post count: 336

    Hi,
    Do CSS filters work with your themes?
    I am trying things like this: https://css-tricks.com/almanac/properties/f/filter/

    For example:

    
    /*Image filters*/
    .blur-me {
      filter: blur(20px) grayscale(20%);
    }
    

    And I am adding blur-me as an extra class tot he image page builder assest, but no filter is being applied.

    thanks

    #191425
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    Sure, the theme does not have any relation CSS properties.

    How you implement these will depend on your browser, code and other CSS overrides.

    Any trouble – drop a link to your site so we can see and help you.

    Thanks.

    #191445
    Pothe
    Member
    Post count: 336
    This reply has been marked as private.
    #191493
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    Looks like your CSS is wrong, please try this:

    .blur-me {
     -webkit-filter: blur(5px);
      -moz-filter: blur(5px);
      -o-filter: blur(5px);
      -ms-filter: blur(5px);
      filter: blur(5px);
    }

    Cheers.

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

You must be logged in to reply to this topic.