简体   繁体   中英

how to change the footer font color in datatables

I included the smooth theme from the Jquery themeroller , i have set the pagination as numbers, But the color of these are black, which looks odd, how can i change to white

Here how the image looks 在此处输入图片说明

If you change the color by styling #footer { color: #fff } for example, you will not change a link colors ... so if the pagination consist of <a> 's, the color can be changed only when a style is applied on the <a> , not on parent elements, so you should do it something like :

#footer a { color: #fff }

If you give some more code I will have more precise answer, cause I am not sure I understand you correct.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM