Okay
  Public Ticket #3025702
How to change blog & shop featured image hover state
Closed

Comments

  •  2
    justin_carter started the conversation

    Hello, i was wondering what the code is or how you can change the hover states to include a transparency amount on the featured images of shop items and to not have an overlay on blog items in the Kalium shop theme?

    Thanks!



  •  1,558
    Laborator replied

    Hi Justin,

    Could you please provide a link or screenshot for all of the requests so we will know which part of the theme exactly you want to make changes.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •   justin_carter replied privately
  •  1,558
    Laborator replied

    Hi again,

    Can you please share your site credentials here, because we need to login to your site and see this issue live. Your information is safe (private) in this thread.

    To include your credentials click Insert Credentials button in the editor toolbar. (See how)


    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •   justin_carter replied privately
  •  1,558
    Laborator replied

    Hi Justin,

    I have added the following CSS to  Custom CSS:

    /* Remove overlay on blog */
    .wpb_wrapper .lab-blog-posts .blog-post-entry .blog-post-image a .hover-display {
        background-color: transparent;
    }
    /* Shop: Transparency management */
    .woocommerce .products .product.catalog-layout-full-bg .product-internal-info {
        background-color: rgba(0,0,0,0.5);
    }
    

    The first one is for the blog to remove the overlay completely, while the second part of the code  is for the transparency:

    rgba(0,0,0,0.5);
    

    so 0,0,0 is the RGB code for black and 0.5 is the transparency which goes from 0 to 1 by percentage where 0.5 is 50%.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  2
    justin_carter replied

    Thank you so much for your help with this!  I really appreciate it.

  •  1,558
    Laborator replied

    You're welcome, wishing you a great daysmile.png

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group