Reputation: 135
For some reason I cannot get the Select option to go inline with the choose file, inside the share-actions-left div. What am I doing wrong?
Thanks
Upvotes: 0
Views: 85
Reputation: 7596
#share-action
should be inline block
#share-action {
display: inline-block;
}
Upvotes: 0
Reputation: 155
I believe what you're looking to to would be handled by making the elements inline block similar to what @Daniil is saying. To get your code to work as is add this
#share-actions-left *{
display:inline-block;
}
Upvotes: 1
Reputation: 2823
Add the following CSS to get the select on the same line as the upload button:
#share-action{float: left;}
Upvotes: 0