Change text-color on div :hover [closed]

.your-div-class:hover, .your-div-class:focus {
    color: #fff;
}

side note: check in your code that .your-div-class or any class associated to its inner text hasn’t a color assigned with !important, in that case either remove the !important or assign it to the hover too.

EDIT: try this:

.schedule-layout2 .schedule-nav li:hover .day-number {
color: #fff !important;
}
.schedule-layout2 .schedule-nav li:hover .schedule-date {
color: #fff !important;
}

Leave a Comment