How to get the sorting arrows on the same line?
How to get the sorting arrows on the same line?
Hi I am using datatables v1.8.2 with the jquery theme roller but I can't get the sorting arrows on the same line.
[code]/
Show
10
25
50
100
entries
Search:
Name
ca685d98-fbb6-4bc9-8373-9fc8015f6366
Canada
Edit
Delete
Showing 1 to 1 of 1 entries
FirstPrevious1NextLast
[/code]
http://img502.imageshack.us/img502/6633/screenshot001mu.jpg
[code]/
Show
10
25
50
100
entries
Search:
Name
ca685d98-fbb6-4bc9-8373-9fc8015f6366
Canada
Edit
Delete
Showing 1 to 1 of 1 entries
FirstPrevious1NextLast
[/code]
http://img502.imageshack.us/img502/6633/screenshot001mu.jpg
This discussion has been closed.
Replies
[code]
/*
* Sort arrow icon positioning
*/
table.display thead th div.DataTables_sort_wrapper {
position: relative;
padding-right: 20px;
padding-right: 20px;
}
table.display thead th div.DataTables_sort_wrapper span {
position: absolute;
top: 50%;
margin-top: -8px;
right: 0;
}
[/code]
Allan
So I am not sure if some other style is conflicting with it. I will have to check.
Edit
I disabled all other css files and only have the demo_table_jui.css and still have the same problem.
Allan