How to style Search Input Box / Show Entries Dropdown

How to style Search Input Box / Show Entries Dropdown

visaolivevisaolive Posts: 1Questions: 0Answers: 0
edited August 2010 in General
I'd like to apply a css class to the Search Input Box and Show Entries Dropdown.

Where might I be able to do this?

Replies

  • ruzzruzz Posts: 49Questions: 0Answers: 0
    Inside fnInitComplete, I do this:
    [code]
    $(".dataTables_length select").addClass("myclass");
    $(".dataTables_filter input").addClass("myclass2")
    [/code]
    It may not be the best solution, but it works.

    HTH
    ruzz
  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    Or just alter you CSS selector:

    [code]
    .dataTables_length select { ... };
    .dataTables_filter input { ... };
    [/code]
    Allan
This discussion has been closed.