Hello!
First - this theme is amazing and perfect for what I need, so thank you!
A couple questions/things I’m trying to modify and can’t figure out:
Website - http://coralhq.co/
- Hover color and font of “Coral” logo at top left of site
- Hover color of top menu items - “About Services Team Contact”
- How to remove or modify which social media button are displayed in the Team section
- Change the text color of address and email in Contact Us section
- Remove/modify the social media buttons in Contact Us section
Does anyone know how to change these things? I’ve been searching for CSS code but haven’t been able to find them. I’ve figured out most of it though!
Hi @jcastro502,
Thank you for your feedback.
- Hover color and font of “Coral” logo at top left of site
Use this css code and replace with your custom values:
#header .top-header .header-logo:hover {
color: #fff;
text-decoration: none;
}
#header .top-header .header-logo{
font-size:2px;
}
- Hover color of top menu items – “About Services Team Contact”
#header .top-header .header-navigation ul li a:hover {
color: #ffde00
{
-
How to remove or modify which social media button are displayed in the Team section
Team Section>Widgets>Person Widgets, there if you don’t put a link it will not show you the icon
-
Change the text color of address and email in Contact Us section
Unfortunatelyyou could change for all of them, not just for adress and email:
#contact-us label}
color:#FFF;
}
- Remove/modify the social media buttons in Contact Us section
to remove:
#contact-us .section-content .contact-us-social {
display: none;
}
Thank you,
Cristian