Reputation: 117
This is tricky, I'm using Dynatables to generate this table, and the search bar is included with this, so I have no access to the HTML and placement of it.
I have a Select Season drop down, and I need it to be above it. On mobile, they are going to be 100% width.
http://sim.rgmgleague.com/stats2/?season=current
Upvotes: 0
Views: 29
Reputation: 3841
Have you tried adding clear: both
to .dynatable-search
?
.dynatable-search{
clear:both
}
Seems to work for me
Upvotes: 1