Hello guys...Wonder if you could help me with this issue..
So to be concise - I have a 'div' container into which I query a series of video links. The embedded videos are aligned next to each other in the container in rows. There are 3 videos in each row. Now I would like to add text corresponding to each video under the video clips. I've been trying with different positions including floating - but as soon as I add the queried text underneath the layout of rows gets messed up. I'd appreciate any comments.
The code of the container itself is below - and that would be ok if this doesn't have to be changed.:
Thanks..
So to be concise - I have a 'div' container into which I query a series of video links. The embedded videos are aligned next to each other in the container in rows. There are 3 videos in each row. Now I would like to add text corresponding to each video under the video clips. I've been trying with different positions including floating - but as soon as I add the queried text underneath the layout of rows gets messed up. I'd appreciate any comments.
The code of the container itself is below - and that would be ok if this doesn't have to be changed.:
Code:
.tab_content {
padding: 20px;
font-size: 0.9em;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
overflow-y: scroll;
overflow-y:auto;
overflow-x:auto;
height:500px;
min-width:400px;
}
Thanks..