Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

[CS3] IE template problem

Status
Not open for further replies.

syntheticMedia

Instructor
Sep 21, 2007
2
US
Hi,

I have CS3. I have made a very basic site with html, based on a template.

However, none of the content is showing up in IE?! Looks fine in Firefox. (This does not happen when designing in DW8.)

Please advise.

heres the link:
 
[EDIT]

after much testing it seems that the embedded css is the problem..when there is no css IE displays the content...still though, I have never had this problem until now...I have used this same css before:

Code:
<style type="text/css">
<!--
body {
	background-color: #333333;
	margin:0px;
	padding:0px;
	background-image: url(images/bgFade.gif);
	background-repeat: repeat-x;
	margin-top: 50px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
a {
	font-size: 12px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
}
a:visited {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
}
a:hover {
	color: #CC0000;
	font-family: Arial, Helvetica, sans-serif;
}
.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #333333;
	font-weight: normal;
}
</style>
 
Maybe it's because you didn't close the opening comment in the style sheet...
Code:
<!--


Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top