WordPress Child Theme – Change Navigation Menu Color
This entry is part 4 of 8 in the series WordPress Child Theme Case Study - 2020 Euro Lens Bath
- WordPress Child Theme – Case Study – 2020 Euro Lens Bath
- WordPress Child Theme – Change Header Image Size
- WordPress Child Theme – Remove Title, Description, White Space, Black Lines in Header Section
- WordPress Child Theme – Change Navigation Menu Color
- WordPress Child Theme – Custom Sidebar on Home Page
- WordPress Child Theme – CSS How To: Align 3 DIVS (left/center/right) Inside Another DIV
- WordPress Child Theme – CSS Sticky Footer
- WordPress Child Theme – WP e-Commerce: Move Product Title to Description Column
Goal: Change the site’s navigation menu color so it matches the color in the header graphic (which is purple).
Section 1 of 2:
To figure out the exact RGB or HEX of the color in the header graphic, we’ll use the ColorZilla Eyedropper plugin for FireFox.
Section 2 of 2:
Now we need to edit the CSS in our Child Theme.
Change:
#access {
background: #000;
display: block;
float: left;
margin: 0 auto;
width: 940px;
}
To:
#access {
background: rgb(124,84,202);
display: block;
float: left;
margin: 0 auto;
width: 940px;
}
Series
- PageLines Framework 2.0 Case Study – BPE Law (6)
- WordPress Child Theme Case Study – 2020 Euro Lens Bath (8)
- WordPress Child Theme Case Study – 2020 Eyes (5)
- WP Twenty Eleven Child theme – Reid Walley (4)
Other posts belonging to the Series: WordPress Child Theme Case Study - 2020 Euro Lens Bath
- WordPress Child Theme – Case Study – 2020 Euro Lens Bath
- WordPress Child Theme – Change Header Image Size
- WordPress Child Theme – Remove Title, Description, White Space, Black Lines in Header Section
- WordPress Child Theme – Change Navigation Menu Color
- WordPress Child Theme – Custom Sidebar on Home Page
- WordPress Child Theme – CSS How To: Align 3 DIVS (left/center/right) Inside Another DIV
- WordPress Child Theme – CSS Sticky Footer
- WordPress Child Theme – WP e-Commerce: Move Product Title to Description Column


