How do you change the color of the phone number? Can it be placed at the far left? I found out how to change the color of the top bar to red via the following code:
#header_meta {
background: #ff0505;
border-color: #2B2B2B;
}
However, it would be nice if this was easier to do. Also, picking social icon colors would be nice as well.
BTW: I’m loving this theme!
Hi tim254,
You can make feature requests in this topic: https://kriesi.at/support/topic/enfold-feature-requests
For the color of the phone number, you can use this css:
.phone-info span {
color: red;
}
Regards,
Devin
That didn’t work, but I was able to figure it out. Here’s what I used
‘
.social_header .phone-info {
color:#fff;
}
‘
However, I haven’t been able to figure out how to change an e-mail link or hyperlink to white as well in that same text area. I’m building up my list of feature request to submit as I’m using it.
I got it working.
.social_header .phone-info a {
color: #FFF;
}