• Hi there!

    Every picture gets some shadow border as css style, which is fine for me. I just want to exclude it in one picture (the hammer logo in the lower right corner = widget area). Is there a possibility to get rid of it via the image advanced options?

    Thanks in advance, stay healthy!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    Hi!

    You can try to add a special class or id to that image:

    
    <img class="myclass" />
    

    and then add the following additional CSS:

    
    img.myclass { box-shadow: none; }
    

    Or to disable for all images:

    
    img { box-shadow: none; }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Remove image css style’ is closed to new replies.