Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #875557

    MikeMobley2002
    Participant

    Hey Guys,

    Our main theme color is dark blue and it looks like the social media background color is light blue automatically for the header and footer. I attached screenshots, but how can I get this light blue background/circle part to be a custom color? I’m wanting to change it to #9CD7DB

    Site is carrienorman.com and I’ll reply privately with credentials so you can see the website since it’s under construction. Thanks!

    #875560

    MikeMobley2002
    Participant
    This reply has been marked as private.
    #875711

    John Ezra
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    .x-social-global a:hover {
        background-color: #9CD7DB!important;
    }

    Hope this helps – thanks!

    #876360

    MikeMobley2002
    Participant

    Sorry I may have not explained it well…I’m not wanting to change the “hover” color, but the light blue color that is in the circle right now..without hovering. I wanted to see how to change that light blue to our custom light blue…so if you’re looking at those icons without hovering..how can we change that light blue color?

    #876736

    Rupok
    Member

    Hi there,

    Thanks for updating. If you don’t want it on hover then why not you just take off the :hover from code? Let’s update your code to following :

    .x-social-global a {
        background-color: #9CD7DB!important;
    }

    Hope this makes sense.

    Cheers!

    #877153

    MikeMobley2002
    Participant

    Got it, thanks!

    #877597

    Prasant Rai
    Moderator

    You are most welcome. 🙂