Title: Colour customization
Last modified: July 1, 2017

---

# Colour customization

 *  [lucasslavik](https://wordpress.org/support/users/lucasslavik/)
 * (@lucasslavik)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/colour-customization-2/)
 * Hi guys,
 * I more or less new to wordpress.org.
    I’ve made a [Website](http://www.vmods.org)
   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: [](http://imgur.com/wtOhKVi)
 * 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](https://wordpress.org/support/users/sacredpath/)
 * (@sacredpath)
 * Automattic Happiness Engineer
 * [8 years, 11 months ago](https://wordpress.org/support/topic/colour-customization-2/#post-9292870)
 * 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 8 years, 11 months ago by [sacredpath](https://wordpress.org/support/users/sacredpath/).

Viewing 1 replies (of 1 total)

The topic ‘Colour customization’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/escutcheon/1.0.8/screenshot.png)
 * Escutcheon
 * [Support Threads](https://wordpress.org/support/theme/escutcheon/)
 * [Active Topics](https://wordpress.org/support/theme/escutcheon/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/escutcheon/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/escutcheon/reviews/)

## Tags

 * [colours](https://wordpress.org/support/topic-tag/colours/)
 * [customization](https://wordpress.org/support/topic-tag/customization/)

 * 1 reply
 * 2 participants
 * Last reply from: [sacredpath](https://wordpress.org/support/users/sacredpath/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/colour-customization-2/#post-9292870)
 * Status: not resolved