Hello,
To change the header text color to black and offer customization options for typography, navigation, and active colors, you can follow these steps:
- Header Text Color
To set the header text to black, add this CSS:
css
Kodu kopyala
.header-title {
color: #000000; /* Black */
}
- Custom Font for Title
If you need to change the font of the title, you can do it by specifying the font family:
css
Kodu kopyala
.header-title {
font-family: ‘YourChosenFont’, sans-serif; /* Replace with your preferred font */
}
- Navigation and Active Colors
To style the navigation links and define active link colors, add the following CSS:
css
Kodu kopyala
.nav-link {
color: #333333; /* Default navigation link color */
}
.nav-link:hover {
color: #FFD700; /* Hover color, e.g., gold to match the logo */
}
.nav-link.active {
color: #FFD700; /* Active link color */
}
Let me know if you need any more help with styling!