Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #736036

    Hello,

    I can’t for the life of me figure out how to control the appearance of the titles below the images on the woocommerce shop and ‘related products’ (essentially links with hover states).

    What is the CSS class of these links?

    Thanks so much!

    #736045

    Hey Itai,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .products .product h3:hover {
        color: orange;
    }
    .products .product h3 {
        font-size: 20px;
    }
    

    If that does not help, please post a screenshot showing the changes you would like to make and a link to your page.

    Best regards,
    Yigit

    #736097

    Well I have some success with this :

    .inner_product_header_cell h3 {
        text-decoration: none!important;
    }
    .inner_product_header_cell h3:hover {
        color: yellow!important;
        text-decoration: none!important;
    }

    But I still get an underline as a non-hovered state. However, when I hover over the thumbnail the underline disappears but the yellow text doesn’t appear like I would if I hover over the h3 text. It’s as if an earlier class supersedes my instructions.

    #736134

    I’ve tried with the .products .product class & I get the same result

    So this is what I get:

    In a normal state, I get an underlined link when I didn’t want one:

    When I hover over the link text, it looks as it should: yellow and no underline

    But when I hover over the image or price I get something else:
    http://heaven11audio.com/KDJ/wp-content/uploads/2017/01/hover-image.png

    What class should I use to get a consistent feel and no underline?

    Many thanks,

    Itai

    #737415

    any update on my question?

    Cheers,

    i

    #738694

    Hi,

    We are very sorry for the late response. Please add this code in the Quick CSS field to remove the underline.

    div .products .product a, div .products .product a:hover {
        text-decoration: none !important;
    }

    If this is not working, please provide a link to the actual page with the issue.

    Best regards,
    Ismael

    #739027

    Hello,

    Thanks for answering. I got the text-decoration part, but more importantly, I wanted for consistency the text link to change to yellow when hovering above the image OR the text (the text that says ‘Billie amp anodized silver pre-order’).

    The shop page in question

    Cheers,

    i

    #739305

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .woocommerce-LoopProduct-link:hover h3 {
    	color:#ffee38!important;
    }
    

    Best regards,
    Vinay

    #739633

    Yes! That’s it!
    Thanks Vinay, you can close the thread now.

    #739796

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Woocommerce CSS control of A links’ is closed to new replies.