Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery Datatables sort icons put on row below the actual text?

I have scoured through all my CSS files (and there are a lot of them) in addition to looking at/removing the sDom settings for my jquery Datatables plug in but for some reason, the sort icon (up and down arrows) next to my text is place below the text as if an html
was somehow input.

Has anybody ever had this happen before?

like image 509
JM4 Avatar asked Mar 07 '11 18:03

JM4


1 Answers

this is how I solved this

.css_right
{
    /* adding this keeps the sort icon on the same level as the label */
    float:right;
}

The icon already has this class, but for some reason it doesn't have the style(s) to correclty display

like image 138
Zack Avatar answered Sep 28 '22 00:09

Zack