I've run into the most bizzare problem. A PHP include calls in a file, which contains the beginning of the body tag as well as the beginning of the main tag:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="sidebar">
</div>
<div id="main">
<div id="menu">
<p> test test test </p>
</div>
The strange thing is, the elements show up no problem but that test message doesn't. It's not hidden under any elements, because when I view the source it's still not there. I have a feeling this is something really dumb/trivial, but it's got me stumped.
Here's my php:
<?php
include 'inc/header.php';
require_once 'login.php';
echo('<div class="somespace"></div>');
include 'inc/queries.php';
include 'inc/footer.php';
?>
css/style.cssstylesheet that was hiding the text. Either way, you'll need to give a lot more information here. Like what's in all the other files, what's in the stylesheet, and so on. – drrcknlsn Aug 16 '12 at 13:43