Click to See Complete Forum and Search --> : Help Me Please!!


Ginger Dude
04-21-2005, 11:21 AM
Hi

I have been recently testing out CSS in my webpage and i have done it as an external style sheet.

When I attach it it makes the title of the page be shown as text on the web page and the title then becomes the file path of the document on the web

I am wondering if you can help me

Cheers In Advance

Ginger Dude

TheBearMay
04-21-2005, 11:28 AM
We'll need to see that area of code to really be of assistance, but it sounds like you've eliminated the closing title tag (</title>) or somehow not structured the link correctly.

bathurst_guy
04-23-2005, 01:01 PM
Yeh make sure youve closed the tags and got them in the right spots. Something along these lines...

<?xml version="1.0" encoding="iso-8859-1"?>
<!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" lang="en">
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p>nothing</p>
</body>
</html>