Datepicker is shown in white

0

Good day, I have a problem wanting to put a datepicker in my code, it does not show me the days of the week, name of the month and some buttons .. well if it shows them but they are in white someone knows how I can modify this ?

I'm using

  • Datepicker for Bootstrap v1.7.1 ( link )
  • Bootstrap v3.3.7 ( link )

    
asked by Richard 01.08.2018 в 17:44
source

1 answer

1

It's a CSS problem, you might be using the datepicker-switch class in another side (there may be conflict in bootstrap)

I recommend that you add from your css:

.datepicker .datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th {
 color: #000 !important;
}
    
answered by 01.08.2018 в 20:10