Hey there! I manage a music website that is currently in beta. I'm running into an issue with the way the music results are appearing in the bottom player - they're all stacked on top of each other instead of being listed side by side. I've been trying to figure out how to format the list of search results to display them next to each other, but so far I haven't had any luck.
For example, I want the song results to look like this: "result 1" "result 2" "result 3"
Instead of:
result 1
result 2
result 3
#current_playlist_rows {
overflow: auto;
height: 360px;
list-style: none;
padding: 0;
margin: 0;
border-right: 3px solid transparent;
float: left;
display: inline;
width: 500000px;
}
The code above helps me achieve the desired flat playlist design. However, I'm struggling to make it scrollable either to the right or left. Do you have any suggestions on how I can achieve this?