Site logo

[Support request] I want to change the color of the text in my footer

Home Forums Support [Support request] I want to change the color of the text in my footer

Home Forums Support I want to change the color of the text in my footer

Viewing 13 posts - 16 through 28 (of 28 total)
  • Author
    Posts
  • #553900
    Tom
    Lead Developer
    Lead Developer

    You can do this:

    .elementor-128 a:hover {
        color: #932200; /* change to other color */
    }
    #553937
    Nick

    Sorry, Tom, That didn’t work. Perhaps I screwed it up. The hover color I want is #009beb. Maybe I didn’t add it correctly… ?

    #553946
    Tom
    Lead Developer
    Lead Developer

    Where’d you add the CSS? I’m not seeing it in your site.

    #554032
    Nick

    It’s on the front page. I removed it after it didn’t work, but I just put it back. I guess I’m not sure where to put the hover color code?

    #554305
    Tom
    Lead Developer
    Lead Developer

    It’s currently set to that same red color. Try changing the hex code to a different color and you should see it change 🙂

    #554610
    Nick

    Yes! That worked. Thank you so much! Just one more question. How do I get rid of that annoying magnifying glass on my product page. I don’t want to have the roll over magnification…

    #555051
    Tom
    Lead Developer
    Lead Developer

    Give this function a try:

    add_action( 'wp', 'tu_remove_wc_zoom', 20 );
    function tu_remove_wc_zoom() {
        remove_theme_support( 'wc-product-gallery-zoom' );
    }

    Adding PHP: https://docs.generatepress.com/article/adding-php/

    Let me know 🙂

    #555629
    Nick

    Tom, two questions. Is that magnifying effect being loaded from Woocommerce or the GP theme? And, just to be perfectly clear, the short code you sent is PHP and not CSS? Thanks, Tom. I appreciate it.

    #555888
    Tom
    Lead Developer
    Lead Developer

    It’s a WooCommerce feature which is enabled by the theme.

    It’s PHP, which can be added using one of these methods: https://docs.generatepress.com/article/adding-php/

    #556095
    Nick

    Tom, I installed Code Snippets and added the PHP code you gave me, but it didn’t work. Not sure what’s happening. Any ideas?

    #556189
    Tom
    Lead Developer
    Lead Developer
    #556397
    Nick

    Yes, brilliant! That worked. Thanks so much, Tom. That looks much better…

    #556423
    Tom
    Lead Developer
    Lead Developer

    Awesome! Glad I could help 🙂

Viewing 13 posts - 16 through 28 (of 28 total)
  • You must be logged in to reply to this topic.