Font color

  • Unknown's avatar

    greetings

    what is the code for purple color, I want to change my main body color including headings and menus.

    and also I want to change the pages background colors to be white.

    can you please assist?

    The blog I need help with is: (visible only to logged in users)

  • Hi there!

    Try to paste this full code on the Customizer –> CSS

    .pique-panel-content {
        color: #bf1dc9;
    }
    
    .main-navigation a {
        color: #bf1dc9;
    }
    
    .main-navigation .current_page_item > a, .main-navigation .current-menu-item > a, .main-navigation .current_page_ancestor > a, .main-navigation ul ul a {
        color: #d96ef6;
    }
    
    .pique-panel-content h2 {
        border: 2px solid #bf1dc9;
        color: #bf1dc9;
    }
    
    body, button, .archive .read-more a, .blog .read-more a, .search-results .read-more a, input, select, textarea {
        color: #bf1dc9;
    }
    
    .site-footer {
        color: #bf1dc9;
    }
    
    body.custom-background {
        background-color: #fff;
    }
    
    .pique-panel:nth-of-type(2n), #masthead, .overlay {
        background-color: #fff;
    }
    
    .pique-panel {
        background-color: #fff;
    }
    
    .site-footer::before {
        background: #fff;
    }
    
    .main-navigation {
        border-color: #fff;
    }
    
    .main-navigation {
        background-color: #fff;
    }
    
    .site-footer a, .pique-template-testimonials .pique-testimonials h2 {
        color: #bf1dc9;
    }

    You can change the colors by yourself if you modify the values next to # (for example: #bf1dc9)

    Let me know if that works for you ;)

  • The topic ‘Font color’ is closed to new replies.