echo '<span style="font-size:13px; font-family:Arial, sans-serif; position:relative; top:-8px;">';
echo $gamedesc;
echo '</br>';
echo '</span>';
echo '<span style="display:inline;">';
echo '<div style="float:left; font-size:11px; font-family:Arial, sans-serif;">';
echo 'Rating: ';
echo round($rating, 2);
echo '</div>';
echo '<div style="float:right; font-size:11px; font-family:Arial, sans-serif;">';
echo 'Added: ';
echo date("M j, Y", $dateadded);
echo '</div>';
echo '<div style="text-align:center; font-size:11px; font-family:Arial, sans-serif;">';
echo 'Played: ';
echo $timesplayed;
echo '</div>';
echo '</span>';
Both the left and right divs just aren't showing up. Any ideas? I'm sort of an HTML noob, but it works in both Chrome and Firefox just dandy.
echo $gamedesc;
echo '</br>';
echo '</span>';
echo '<span style="display:inline;">';
echo '<div style="float:left; font-size:11px; font-family:Arial, sans-serif;">';
echo 'Rating: ';
echo round($rating, 2);
echo '</div>';
echo '<div style="float:right; font-size:11px; font-family:Arial, sans-serif;">';
echo 'Added: ';
echo date("M j, Y", $dateadded);
echo '</div>';
echo '<div style="text-align:center; font-size:11px; font-family:Arial, sans-serif;">';
echo 'Played: ';
echo $timesplayed;
echo '</div>';
echo '</span>';
Both the left and right divs just aren't showing up. Any ideas? I'm sort of an HTML noob, but it works in both Chrome and Firefox just dandy.