Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #109241
    wouwonline
    Participant

    Hi, is it possible to change the colors of the site?

    I would like to change the color of:

    – Title and subtitle of the page
    – links
    – menu
    – background color of the header (is now black)

    HOpe it’s possible!

    #109307
    Mahesh
    Participant

    @wouwonline: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    /* Title color */
    #content #main .entry-title a,
    #content #main .entry-title {
    	color: #ff00ff;
    }
    
    /* Link Colors */
    a {
    	color: #ff00ff;
    }
    
    /* Menu Colors */
    .main-navigation .current_page_item > a, .main-navigation .current-menu-item > a, .main-navigation .current_page_ancestor > a {
    	color: #ff00ff;
    }
    
    /* Header Background*/
    .site-banner {
    	background-color: #00ff00;
    }

    Note: Please use your desired colors.

    Regards,
    Mahesh

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