javanoobie9
02-24-2008, 06:02 PM
I have a php page with an include for a header template. The below is in the header.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>mypage</title>
<link href="<?php echo URL_PATH . 'style.css' ?>" rel="stylesheet" type="text/css" />
</head>
When I view source I can see it linking to the stylesheet but nothing is showing on the page.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>mypage</title>
<link href="<?php echo URL_PATH . 'style.css' ?>" rel="stylesheet" type="text/css" />
</head>
When I view source I can see it linking to the stylesheet but nothing is showing on the page.