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 sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

html #include not working

Status
Not open for further replies.
Incidentally, you should probably add a generic font family to your font declaration:

Code:
body {
	font-family: "Trebuchet MS", "Tw Cen MT", Verdana, Tahoma, Arial, [b]sans-serif[/b];
}

for the rare occurrence that none of those fonts are installed on the viewing platform.

Also, try specifying you font sizes in ems rather than px (16px == 1em on most platforms), and going for a scalable solution. Given that it will scale in most things other than IE anyway, and the design looks well able to cope with scaling, I think it would be a good addition to the site.

Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Dan said:
Try renaming your page to have a ".shtml" extension.
Just to be precise, Dan is talking about the index.html page. By default setup on the servers, pages that have .html extension are not parsed for server side includes. If changing it to .shtml does not help, contact your server admin and ask if they support server side includes.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top