Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #197940

    I feel like i’m asking a bunch of questions haha i’ve looked throught the forum and tried some codes but none seem to work for me. Is there a quick css code for disabling the hover gradient and arrow on linked images? example: http://www.nvltygoods.com/shop/ Id like to disable both and instead add a thin white border when hovered over. Any help would be great!

    #197943

    Hey nvltygoods!

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

    .image-overlay { display: none!important; }
    .avia_image.avia-align-center:hover { border: white solid 1px; }

    Regards,
    Yigit

    #197945

    THanks Yigit, just tried it and nothing happened. :( I even cleared my cache too.

    #197946

    NM i added it to the top but there are some options that are showing up that i have hid before. Is there a correct order in which i should apply my quick css codes so they all work properly?

    #197947

    the “you are here” heading is visible when i add the code at the top of my quick css.

    #197948

    sorry,…. also im not a fan of the image resizing once hovered over. it shrinks just a hair smaller when hovered.

    #197949

    **Got it in the right spot. I just dont like the hover resize thing thats going on

    #197974

    Hi!

    It’s caused by the border which triggers a 2px shift of the image when you hover over the product. You can fix it by removing the “white border hover effect” or by adding a dark border to the product if the user does not hover over the product. You can use follow code

    
    .avia_image.avia-align-center {
    border: #222 solid 1px;
    }
    

    to add a dark border to the product image links.

    Best regards,
    Peter

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Disable image hover effect and add border instead’ is closed to new replies.