Change font color for bootstrap class "dropdown-header"

Hi,

I managed to find all the necessary CSS codes by searching the forum to adapt my website. Except one setting.
I would like to change the font color in the dropdown menu for the bootstrap class “dropdown-header”.
Now is barely readable. See attached image. I also attached my custom CSS adjustments.

If you need to access my website: Buhtl’s Blog

Best regards,
Martin

Since txt attachment is not permitted…
Here are use CSS codes:

/* Divider icon change */
body hr.section-divider:after {
content: “\f21c”;
}

/* Center menu */
@media (min-width: 800px){
.navbar-default .navbar-collapse {
display: table !important;
text-align: center;
margin: 0 auto;
}
}

/* Center header image and title */
.site-branding {
margin: 0 auto;
text-align: center;
float: none;
}

/* Center insterted video files */
.wp-video {
text-align: center;
margin-left: auto;
margin-right: auto;
}

/* Hide cat., tags, arch., etc titles */
h1.page-title {
visibility: hidden !important;
width:0 !important;
height: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}

/* Hide page title */
body.page header.entry-header.page-header {
display: none;
}

/* Font size for all titles */
.entry-title, .entry-title a {
font-size: 30px;
}

/* Hide meta */
.entry-meta .byline, footer.entry-meta {
display:none !important;
}

/* 404 center body */
body.error404, .no-results {
text-align: center;
}

/* Define sidebar width */
div#secondary {
width: 30%;
}
div#primary {
width: 70%;
}

/* Remove comments tab in widget */
.widget.tabbed .nav-tabs li:last-child {
display: none;
}

Hi Martin,

I hope you are well today and thank you for your question.

You don’t need to share the CSS code here because i can access it from your site.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Unite Options -> Other -> Custom CSS

li.dropdown-header {
    color: #fff;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin

Hi Movin!

Thank you very much for your help.
This is exactly what I was looking for. As simple as it should be.

Best Regards,
Martin

You are most welcome here :slight_smile: