I am still having a css issue on another page though.
I want the videos to be laid out 2 side by side in 2 rows
http://outdoorsindoors.net/DEV/TFTD/...ds/Video/index
Code:
.vid_container{background-image:url('vid-bg.jpg'); height:850px; padding:65px 0px 15px 0px; text-align:center; }
.vid{text-align:center; width:100% }
.vid_entry{text-align:center; color:#FFFFFF; font-weight:bold; padding:15px 0px 0px 0px; float:left; }
.vid_entry p{text-align:left; color:#FFFFFF; vertical-align:top; font-weight:normal }
.vid_entry a{color:#FFFFFF; font-size:12pt; font-weight:normal}
.vid_entry a:hover { color: #c36202; font-weight:normal }
.vid_entry img {float:left; position:relative; top:0; padding: 0 5px 0 0}
.vid_summ {text-align:center; color:#FFFFFF; padding:15px 0px 0px 15px; float:left; }
.vid_summ p{text-align:left; color:#FFFFFF; float:left; }
Code:
<div class="vid_container">
<?php
$i=1;
$vidsql = mysql_query("Select * from site_video order by id");
while ($vid = mysql_fetch_array($vidsql)) {
echo "<div class=\"vid\">\n";
if ($vid['vid_type']==3 ) {
echo "<div class=\"vid_entry\">\n";
echo $vid['title']."\n";
echo $vid['vid_desc']."\n";
echo"<br><a href=\"index.php?page=mods/Video/gen_flv&vidid=".$vid['id']."\">Watch Video</a>\n";
echo "</div>\n";
}
$i++;
}
echo "</div>\n";
?>
<div class="vid_summ"><p>
This footage was shot by Virgil Tagtmeyer and Josh and Jeremy Yuille during the Missouri three week Spring turkey season. This is what they had to say about the Floozie decoys: <br><br>May 11, 2009
<i>We were fortunate to hunt over both of your Floozie decoys all year and had tremendous success. We have had everything from hens pecking the decoys, to toms running them over, spurring and flogging the Floozie jake. As our experience, with the lifelike look of these decoys, when a bird sees them, they commit! We have also been able to video our hunts, and you can see the Floozies in action on Dish Network channel 230 on Bad Bob and Jimmy's Posted Places. Thanks Anthony for making such an awesome and innovative product!!!</i><br><Br>
Josh and Jeremy Yuille, Posted Places TV, Pro Staff <Br><br><i>I have hunted turkeys for over 30 years and have used many different brands of decoys. I have never seen reactions like this, in all my life, to these life like, life size decoys from Eddy Enterprises. Hens and gobblers are so attracted to the decoy, they come in running.<br>
Watch the video clips and you will be amazed by the turkey's attraction and reaction to these awesome wild turkey decoys.</i><br><br>
Virgil Tagtmeyer, Tag & Co., Sedalia, Mo.</p>
</div>
</div>
Bookmarks