Question

Please view the Wordpress video gallery here: http://milabalami.com

I want the two videos to be on the same line. They are both in the same paragraph and I have not added a <br> tag. As far as I know, the CSS should be correct, but I am suspecting that I am missing something here? Anyone who can solve this puzzle for me?

Was it helpful?

Solution

You can simply do this:

.floatbox {
    float: left;
}

OTHER TIPS

The problem is that in you <a> you have a <span> that has the style display:block

you can solve this by either floating you <a>:

.floatbox {
    float: left;
}

alternatively, by styling you <a> with display:inline-block

.floatbox {
    display:inline-block;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top