Color Change

  • Hello, I just need your help with the following…

    If possible, how to customize the color of all Page Titles, Post Titles and Content Text.
    Thank for your help!
    RR

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

  • Sorry, will add one more question…

    You can see I changed the sticky primary menu background color, but it still shows a white border on the top, white color on both sides and white line separating the links. How can I do to have all that with same background color?

    Thank you!!

  • Hi,

    First of all, congrats for the marvellous customization of Arcane theme. You have customized it beautifully.

    Please try the following css snippets.

    For Page Titles and Post Titles

    
    .entry-title {
        color: #963532;
    }
    

    About Content Text

    You may try the following css snippet. But, it may not work if more specific rule has applied in some blocks.

    
    body {
        color: #963532;
    }
    

    For Menu Border:

    
    @media (min-width: 768px) {
        .main-navigation {        
            border-top: none;
            border-bottom: none;
        }
        .main-navigation.stuck {        
            border-bottom: none;
        }
    }
    

    Thanks

  • Thank you so much!!!

  • The topic ‘Color Change’ is closed to new replies.