|
Posted by Jonathan N. Little on 10/15/18 11:41
Alexander Nagelmann wrote:
> HI everybody!
>
> I'm working on a church website project at the moment.
> I'm using Dreamweaver 8 for coding. The page is based on PHP.
> For positing and characterizing elements we use CSS.
>
> First of all have a look at the page:
>
> http://minipage.nagelmann.info/index.php
>
> On Firefox 1.5 everything looks pretty fine, but Internet Explorer
> 6 and the BETA 7 presents the page in total different way, perhaps
> because of interpreting CSS in a wrong way.
>
> Does anyone of you know how to fix this problem?
> Desiging the page is a real pleasure, but problems like this
> make me really abandon hope.
>
>
> Thanks for your help and any suggestion to solve this problem...
>
>
> Alex
Alex, Alex ... Alex [mumble and grumble]
A very quick look at your source reveals a 'cut and paste' monstrosity!
BODY elements *within* the HEAD, Multiple BODY and HTML tags and more...
Maybe you should forego the WYSIWYG editors, all I find is that can
allow the novice to make a real mess really really fast!
Here a basic template to work from:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta name="description" content="YOUR_PAGE_DESCTIPTION">
<meta name="keywords" content="YOUR_KEYWORDS">
<title>template</title>
<link rel="stylesheet" type="text/css" href="YOUR_STYLESHEET.css">
</head>
<body>
<!-- Only put your webpage markup below this line -->
<!-- AND above this line -->
</body>
</html>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|