How to chang Info color ?

How to chang Info color ?

OSSOSS Posts: 8Questions: 1Answers: 0

How can I change the color of the Info texts as highlighted in the image below :

My JS is as follows :
$(document).ready(function() {
var table = $('#example').dataTable({
"columnDefs": [
{ "targets": [3,4], "orderable": false }
]
});
} );

This question has accepted answers - jump to:

Answers

  • allanallan Posts: 61,740Questions: 1Answers: 10,111 Site admin

    Your best option is to right click on the element and select "Inspect". It will show you the element, including class name information so you can target it like:

    div.dataTables_info {
      color: white;
    }
    

    Allan

  • OSSOSS Posts: 8Questions: 1Answers: 0

    this is the inspect code, now how to set the text color to white ???

  • OSSOSS Posts: 8Questions: 1Answers: 0

    This is my complete code :

    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.3/css/jquery.dataTables.min.css">

    <body bgcolor="black">
    <table id="example" class="display" style="width:100%">
    <thead>
    <tr>
    <th>Name</th>
    <th>Position</th>
    <th>Office</th>
    <th>Age</th>
    <th>Start date</th>
    <th>Salary</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>Rhona Davidson</td>
    <td>Integration Specialist</td>
    <td>Tokyo</td>
    <td>55</td>
    <td>2010/10/14</td>
    <td>$327,900</td>
    </tr>
    <tr>
    <td>Colleen Hurst</td>
    <td>Javascript Developer</td>
    <td>San Francisco</td>
    <td>39</td>
    <td>2009/09/15</td>
    <td>$205,500</td>
    </tr>
    <tr>
    <td>Sonya Frost</td>
    <td>Software Engineer</td>
    <td>Edinburgh</td>
    <td>23</td>
    <td>2008/12/13</td>
    <td>$103,600</td>
    </tr>
    <tr>
    <td>Jena Gaines</td>
    <td>Office Manager</td>
    <td>London</td>
    <td>30</td>
    <td>2008/12/19</td>
    <td>$90,560</td>
    </tr>
    <tr>
    <td>Quinn Flynn</td>
    <td>Support Lead</td>
    <td>Edinburgh</td>
    <td>22</td>
    <td>2013/03/03</td>
    <td>$342,000</td>
    </tr>
    <tr>
    <td>Charde Marshall</td>
    <td>Regional Director</td>
    <td>San Francisco</td>
    <td>36</td>
    <td>2008/10/16</td>
    <td>$470,600</td>
    </tr>
    <tr>
    <td>Haley Kennedy</td>
    <td>Senior Marketing Designer</td>
    <td>London</td>
    <td>43</td>
    <td>2012/12/18</td>
    <td>$313,500</td>
    </tr>
    <tr>
    <td>Tatyana Fitzpatrick</td>
    <td>Regional Director</td>
    <td>London</td>
    <td>19</td>
    <td>2010/03/17</td>
    <td>$385,750</td>
    </tr>
    <tr>
    <td>Michael Silva</td>
    <td>Marketing Designer</td>
    <td>London</td>
    <td>66</td>
    <td>2012/11/27</td>
    <td>$198,500</td>
    </tr>
    <tr>
    <td>Paul Byrd</td>
    <td>Chief Financial Officer (CFO)</td>
    <td>New York</td>
    <td>64</td>
    <td>2010/06/09</td>
    <td>$725,000</td>
    </tr>
    <tr>
    <td>Gloria Little</td>
    <td>Systems Administrator</td>
    <td>New York</td>
    <td>59</td>
    <td>2009/04/10</td>
    <td>$237,500</td>
    </tr>
    <tr>
    <td>Bradley Greer</td>
    <td>Software Engineer</td>
    <td>London</td>
    <td>41</td>
    <td>2012/10/13</td>
    <td>$132,000</td>
    </tr>
    <tr>
    <td>Dai Rios</td>
    <td>Personnel Lead</td>
    <td>Edinburgh</td>
    <td>35</td>
    <td>2012/09/26</td>
    <td>$217,500</td>
    </tr>
    <tr>
    <td>Jenette Caldwell</td>
    <td>Development Lead</td>
    <td>New York</td>
    <td>30</td>
    <td>2011/09/03</td>
    <td>$345,000</td>
    </tr>
    <tr>
    <td>Yuri Berry</td>
    <td>Chief Marketing Officer (CMO)</td>
    <td>New York</td>
    <td>40</td>
    <td>2009/06/25</td>
    <td>$675,000</td>
    </tr>
    <tr>
    <td>Caesar Vance</td>
    <td>Pre-Sales Support</td>
    <td>New York</td>
    <td>21</td>
    <td>2011/12/12</td>
    <td>$106,450</td>
    </tr>
    <tr>
    <td>Doris Wilder</td>
    <td>Sales Assistant</td>
    <td>Sydney</td>
    <td>23</td>
    <td>2010/09/20</td>
    <td>$85,600</td>
    </tr>
    <tr>
    <td>Angelica Ramos</td>
    <td>Chief Executive Officer (CEO)</td>
    <td>London</td>
    <td>47</td>
    <td>2009/10/09</td>
    <td>$1,200,000</td>
    </tr>
    <tr>
    <td>Gavin Joyce</td>
    <td>Developer</td>
    <td>Edinburgh</td>
    <td>42</td>
    <td>2010/12/22</td>
    <td>$92,575</td>
    </tr>
    <tr>
    <td>Jennifer Chang</td>
    <td>Regional Director</td>
    <td>Singapore</td>
    <td>28</td>
    <td>2010/11/14</td>
    <td>$357,650</td>
    </tr>
    </tbody>
    </table>
    </body>



    $(document).ready(function() { $('#example').DataTable( { "paging": true, "ordering": true, "info": false } ); } );
  • tangerinetangerine Posts: 3,350Questions: 37Answers: 394

    Allan already gave you the answer. Apply your own CSS to override the default style.

  • colincolin Posts: 15,146Questions: 1Answers: 2,586
    Answer ✓

    Ah, you also need to add "!important":

    div.dataTables_info {
      color: white !important;
      background-color: black;
    }
    

    See example here: http://live.datatables.net/wafokazi/1/edit

    Colin

  • OSSOSS Posts: 8Questions: 1Answers: 0

    it's working good...

    and what about the pagination and ordering parts ???
    how to target them ???

  • colincolin Posts: 15,146Questions: 1Answers: 2,586

    As Allan said

    Your best option is to right click on the element and select "Inspect". It will show you the element, including class name information so you can target it

    Colin

  • OSSOSS Posts: 8Questions: 1Answers: 0

    but it's not showing anything...

  • kthorngrenkthorngren Posts: 20,320Questions: 26Answers: 4,773

    What exactly have you tried? Please update Colin's test case with what you are doing so we can offer suggestions.

    Kevin

  • OSSOSS Posts: 8Questions: 1Answers: 0

    please stop messing around and do answer the question, if possible...

  • kthorngrenkthorngren Posts: 20,320Questions: 26Answers: 4,773

    We aren't messing around. If the steps Colin provided aren't working for you then we need to understand why. Showing us what you did is the best way. Here is Colin's example updated with the page length, search, pagination and header highlighted.
    http://live.datatables.net/wafokazi/2/edit

    Kevin

  • colincolin Posts: 15,146Questions: 1Answers: 2,586

    ... and here's a screenshot showing how what an element inspection looks like - as I mentioned in my last reply.

    In regards to us "messing around", we can only help you if you show us what you want help with. Saying "it's not showing anything" doesn't help us to help you - take screenshots, use the example we've provided, anything that demonstrates the problem ...

    Colin

  • OSSOSS Posts: 8Questions: 1Answers: 0

    How to change the text color for show entries labels and the dropdown items to white ???

  • colincolin Posts: 15,146Questions: 1Answers: 2,586
    Answer ✓
  • OSSOSS Posts: 8Questions: 1Answers: 0

    thank you very much...

Sign In or Register to comment.