Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #115893
    Casper
    Participant

    Hi

    I’m playing around with the colors on my site and for some reason some of the text colors do not change.

    The site is: liberatingthespirit.com

    I’ve changed all the green colors in Customizer to blue. But the title remains the standard green color as well as all the hover over link text color in the widgets. Also the page navigator and breadcrumbs are still green.

    What’s causing this?

    All the best
    Casper

    #115917
    Mahesh
    Keymaster

    @zerolizer0: These colors are not changing because these options are not available. You can achieve this with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    /* Site Title hover color */
    #site-title a:hover, #site-title a:focus, #site-title a:active {
    	color: #00ff00;
    }
    
    /* widget link hover color */
    .widget-area .widget a:hover {
    	color: #ff00ff;
    }
    
    /* Pagination background color */
    #content .wp-pagenavi a:hover, #content .wp-pagenavi span.current {
    	background-color: #fff000;
    }
    
    /* Breadcrumb color */
    .breadcrumb ul li a:hover, .breadcrumb ul li.current_item {
    	background-color: #00cc00;
    }
    
    .breadcrumb ul li a {
    	color: #888bbb;
    }

    Note: Please change the color as desired.

    Regards,
    Mahesh

    #115925
    Casper
    Participant

    Thank you Mahesh! It works perfectly. There’s just one more though. Could you tell me the code for the small bullets in the featured slider?

    Thank you!

    All the best

    #115936
    Mahesh
    Keymaster

    @zerolizer0: Add the following CSS:

    #controllers a:hover, 
    #controllers a.active {
        background-color: #00ff00;
    }

    Regards,
    Mahesh

    #116016
    Casper
    Participant

    Thank you Mahesh. Worked perfectly after I added a “:”! 🙂

    All the best

    #116096
    Mahesh
    Keymaster

    @zerolizer0: I missed ‘:’. Thank you for your appreciation. If you like my support then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/adventurous?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Some colors do not change’ is closed to new replies.