Weird difference between photo and video gallery

Status: 
Open
Question: 

OK - I am using the contemplate as detailed in the guide - I use the code below for the photo gallery:

<?php foreach ((array)$node->field_pictures as $item) { ?>
<?php print $item['view'] ?>
<?php } ?>

and it works great displaying the photos next to each other as expected.

I use this code for the video gallery:

<?php foreach ((array)$node->field_video as $item) { ?>
<?php print $item['view'] ?>
<?php } ?>

and it does display the videos but vertically (one directly on top of the other). I have checked my single quotes and all the rest of the normal stuff but still can't get it to work. I have verified the body part of the template is enabled on the content type "Videos" and the field name is "video". I have verified from the list of contemplate variable that field_video is correct...

Anyone have any ideas? How can I get PHP to forcibly print the videos horizontally?

Thanks in advance for any help!

Responses

1. You'll need to edit your

You'll need to edit your style.css probably and add some css rules. If you check your source code, you can see which div class encompasses the field. Add a float:left;