lio04 17 Junior Poster in Training

Very easy way is use <div id> tags and extern style.css file.

e.g. this code in HTML file:

In header:

<link rel="stylesheet" type="text/css" href="style.css" />

Body:

<body>
<div id="container">
	
	<div id="menu">
	blah blah
	</div>

	<div id="content">
	blah blah
	</div>
</div>
</body>

and CSS:

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

#menu {
  width: 200px;
  height: 600px;
  float: left;
  background-color: #c6d9f0;
  }

#content {
  width: 300px;
  height: 600px;
  float: left;
  background-color: #ffffff;
}

I hope, that I understand right, what you want. :)

lio04 17 Junior Poster in Training

Can you post here your CSS code ? Maybe is problem there. :)

lio04 17 Junior Poster in Training

Where is the site placed ? Problems can be in webhosting and their server, if it's slow.

Also it can be in your code.

lio04 17 Junior Poster in Training

lol, I am just really bad in english.
http://img214.imageshack.us/img214/6728/desktop3hi8.png

Here is better image.

lio04 17 Junior Poster in Training

But tags "_anything:" for IE are not valid. I would solve this problem with two css files, if is with one really impossible.

<!--[if IE6]>
<style type="text/css">
@import "styleie6.css";
</style>
<![endif]-->>
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

You must not setting width, but is better have it. I mean width of your page elements, e.g. header, because entire page is wide all the same.

lio04 17 Junior Poster in Training

If anybody will have this problem in future, try /etc/init.d/gdm start to start gnome display manager. Of course, with super user privileges.

*gdm can be replaced with kdm, xdm. Depends on your login manager.

lio04 17 Junior Poster in Training

Why do you setting easy attributes for a href with JavaScript ?

Use the hover in CSS. For example:

a.mouseover:hover {
	text-decoration: underline;
	}

In HTML:

<a class="mouseover" href="index.php">Index</a>
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