lio04 17 Junior Poster in Training
peter_budo commented: Nice link +8
lio04 17 Junior Poster in Training

It is not possible with CSS, but you can apply PHP include method, if you don't want <link rel> in header.

In header will be:

<?php include "favicon.php" ?>

In PHP file will be:

<link rel="shortcut icon" href="favicon.ico" />
peter_budo commented: Good work +7
lio04 17 Junior Poster in Training

Hmm, my idea. :)
Bound this page with any named <div> tag, onto <body>, e.g.

<body>
     <div id="container"> 
     [B]Everything others[/B] 
     </div>
</body>

and in .css file set this:

#container {
	margin: 0 auto;
	width:  *px;
	}

*Width value of your page.

microtekblue commented: thanks for your help - microtekblue +1