Comments 2Lacey started the conversationJuly 7, 2016 at 12:25amHi,Is it possible to change the icon colors at the top header of the page? Red for YouTube/Yelp, Green for the $ and Blue for Facebook. 1,710Barry repliedJuly 7, 2016 at 2:58pmHi LaceyThat's possible with some CSS. The CSS will target the icon boxes by order and change the icon color. So, for example, if you add or remove a icon box the colors doesn't match anymore and the CSS need to be changed./* Address Icon Box */.header .widget-icon-box:nth-child(1) .fa { color: red; }/* Phone Icon Box */.header .widget-icon-box:nth-child(2) .fa { color: red; }/* Get a Quote Icon Box */.header .widget-icon-box:nth-child(3) .fa { color: green; }/* Yelp Icon Box */.header .widget-icon-box:nth-child(4) .fa { color: red; }/* Facebook Icon Box */.header .widget-icon-box:nth-child(5) .fa { color: blue; }/* YouTube Icon Box */.header .widget-icon-box:nth-child(6) .fa { color: red; }You can copy/paste this, only need to change the color value to your own custom needs.Best regards,BarryQreativeThemes.com | WordPress Themes 2Lacey repliedJuly 7, 2016 at 10:20pmPerfect, Thank you!Also, is there a way to change the color of the dots between each of the Menu items? They are really subtle right now. 1,710Barry repliedJuly 7, 2016 at 10:27pmYou can use the following CSS for that (only change the background-color value.@media (min-width: 992px) { .main-navigation li a::before { background-color: #46722b; } }You're welcome!Best regards,BarryQreativeThemes.com | WordPress Themes 2Lacey repliedJuly 7, 2016 at 11:30pmIt still didn't change the dots. :/ See attached. 1,710Barry repliedJuly 7, 2016 at 11:37pmI forgot the !important, excuse me. Please try this one:@media (min-width: 992px) { .main-navigation li a::before { background-color: #46722b!important; } }Best regards,BarryQreativeThemes.com | WordPress Themes 2Lacey repliedJuly 8, 2016 at 1:49amPerfect, thanks!1 Likeprzemek repliedJuly 18, 2016 at 2:10pmHow to remove dots from menu? 1,710Barry repliedJuly 18, 2016 at 2:18pmHi,You can remove the dots with the following CSS line:.main-navigation li a::before { display: none!important; }Best regards,BarryQreativeThemes.com | WordPress Themes Sign in to reply ...
Hi,
Is it possible to change the icon colors at the top header of the page? Red for YouTube/Yelp, Green for the $ and Blue for Facebook.
Hi Lacey
That's possible with some CSS. The CSS will target the icon boxes by order and change the icon color. So, for example, if you add or remove a icon box the colors doesn't match anymore and the CSS need to be changed.
/* Address Icon Box */
.header .widget-icon-box:nth-child(1) .fa { color: red; }
/* Phone Icon Box */
.header .widget-icon-box:nth-child(2) .fa { color: red; }
/* Get a Quote Icon Box */
.header .widget-icon-box:nth-child(3) .fa { color: green; }
/* Yelp Icon Box */
.header .widget-icon-box:nth-child(4) .fa { color: red; }
/* Facebook Icon Box */
.header .widget-icon-box:nth-child(5) .fa { color: blue; }
/* YouTube Icon Box */
.header .widget-icon-box:nth-child(6) .fa { color: red; }
You can copy/paste this, only need to change the color value to your own custom needs.
Best regards,
Barry
QreativeThemes.com | WordPress Themes
Perfect, Thank you!
Also, is there a way to change the color of the dots between each of the Menu items?
They are really subtle right now.
You can use the following CSS for that (only change the background-color value.
@media (min-width: 992px) { .main-navigation li a::before { background-color: #46722b; } }
You're welcome!
Best regards,
Barry
QreativeThemes.com | WordPress Themes
It still didn't change the dots. :/ See attached.
I forgot the !important, excuse me. Please try this one:
@media (min-width: 992px) { .main-navigation li a::before { background-color: #46722b!important; } }
Best regards,
Barry
QreativeThemes.com | WordPress Themes
Perfect, thanks!
How to remove dots from menu?
Hi,
You can remove the dots with the following CSS line:
.main-navigation li a::before { display: none!important; }
Best regards,
Barry
QreativeThemes.com | WordPress Themes