Bootstrap 3.3.5 Search float:left;

Bootstrap 3.3.5 Search float:left;

kkouvariskkouvaris Posts: 1Questions: 1Answers: 0

Hi.

I am using Bootstrap 3.3.5(jquery.dataTables.min.js and dataTables.bootstrap.min.js) for Datatables and i want to change the position of Search to the left top of the table without showing the row entries

Answers

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

    Hi @kkouvaris ,

    We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.

    Cheers,

    Colin

  • RyanStanfordRyanStanford Posts: 23Questions: 4Answers: 0

    I was able to do this with adding some CSS into the html file:

    <style>
    .dataTables_wrapper .dataTables_filter{
    float: left;
    }
    .dataTables_wrapper .dataTables_length{
    float: right;
    }
    </style>
    

    In my case, I just wanted the search on the left, the row entries on the right.

This discussion has been closed.