Change topbar text color

change topbar text color
this is not working

current settings

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
margin-top: 10px;
}

Reduce paragaph space
p {
margin: 0 0 1em;
}

footer.x-colophon.top div#widget_contact_info-3 {
color: #ccc;
}

.x-colophon a, .x-colophon .widget a, .x-colophon {
color: #cccccc;
}
.x-colophon.bottom { background-color: black; } /* bottom footer background */
.x-colophon.bottom .x-nav li a,
.x-colophon.bottom
.x-nav li:after,
.x-colophon.bottom
.x-social-global a {
color: #fff;
}

x-topbar .p-info {

color: white;

}

Hi @VelocityWeb,

Thanks for reaching out.

You should remove this line,

Reduce paragaph space,

It’s not a CSS, but you can also change it to this

/* Reduce paragaph space */

Which makes it a standard comment which browser will ignore.

And you should change this CSS

x-topbar .p-info {

color: white;
}


to this

.x-topbar .p-info {
color: white;
}

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.