• Hi guys,

    I more or less new to www.remarpro.com.
    I’ve made a Website using the Escutcheon theme – but now I want to Change some colours.
    I’ve did the most things I needed, but now I have no idea to change some Special elements.
    here I’ve made a screenshot which the part I can’t Change:

    I managed to change the widget title with

    h1.widget-title {
        color: #c01c11!important;
    }

    but for the other parts I can’t figure out how to do it ??

    Anyone knows the CSS for that?

    Sorry for my eventually bad english ??

    I hope you can help me ??

Viewing 1 replies (of 1 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, for the menu bar that appears at the bottom of the menu items, add the following custom CSS. I’ve used the same red as your site title.

    .main-navigation a:after {
            background-color: #c01c11;
    }

    For the bar below the site title.

    .site-title::after {
            background-color: #000;
    }

    Search field border color.

    input[type="search"] {
            border-color: #000;
    }

    On the “search field to background”, I’m not sure I understand. Are you wanting it the same color as the background of your site? If so, instead of the above rule, use this instead.

    input[type="search"] {
            border-color: #000;
            background: #000;
            color: #fff;
    }
    • This reply was modified 7 years, 8 months ago by sacredpath.
Viewing 1 replies (of 1 total)
  • The topic ‘Colour customization’ is closed to new replies.