I import twitter classes but when i use table stripped it shows me one white and one transparent, i want the transparent change to gray, is any way to achive that. regards
Asked
Active
Viewed 1,262 times
0
-
– Ernesto De Obaldía May 28 '16 at 21:28
-
I dont know in where to modify that css, bootstrap.csss is not in my project, is bootstrap-magnify.css only but do the effect, i dont know from where is tooked. – Ernesto De Obaldía May 28 '16 at 21:29
-
i found it under content folder bootstrap.css where to modify background color? regards – Ernesto De Obaldía May 28 '16 at 22:26
-
here is it http://stackoverflow.com/questions/20825211/bootstrap-table-striped-how-do-i-change-the-stripe-background-colour regards – Ernesto De Obaldía May 28 '16 at 22:48
1 Answers
0
look for the below section in bootstrap.css
and replace the background-color
of your choice
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
background-color: #999; /*Change the color here*/
}

Mihir Kale
- 1,028
- 1
- 12
- 20