View Full Version : help please!!!!!!!!


immaloser
03-24-2004, 03:52 PM
OK I REALLYY need HELP!

If you go here, it tells how to make a nice layout :http://komettails.hamha.net/index.php?link=divlayers


I did everything right like she said exsept te codeing! I dont get it!

She tells where to put the codes, but I dunno where "there" is! Can someone please(!) post a basic CCS code to where I have to put the codeing stuff on it? thanks =))))))

salomeyasobko
03-24-2004, 11:11 PM
after the <head> tag in your coding, put this code:

<style type="text/css">

THE CODE SHE GAVE YOU GOES HERE

}</style>


does that make sense now? :)

immaloser
03-25-2004, 09:32 PM
<html>
<head>
<style type="text/css">

body {background-image: url(/blah.gif);
background-color: #your color;
background-attachment: scroll;
background-repeat: repeat-y;

Div layer for image: <div id="image" style="position: absolute; z-index: 2; left: ###px; top: ###px; width: ###px; height: ###px"> <img border="0" src="/test.jpg" width="200" height="200"> </div>


<div id="content" style="position: absolute; z-index: 2; left: ###px; top: ###px; width: ###px; overflow: visible">
your content
</div>

<div id="navigation" style="position: absolute; z-index: 2; left: ###px; top: ###px; width: ###px; overflow: visible">
your links
</div>


}</style>
<title></title>
</head>



</body>


</html>






thats my codes but when I look at my page nothing shows up but white!did I place the images where they go in the right place????

Rosey
03-25-2004, 09:46 PM
Your code is a little messed up. Try this. Everything in bold you need to change to YOUR values.


<html>
<head>
<style type="text/css">

body {background-image: url(blah.gif);
background-color: #your color;
background-attachment: scroll;
background-repeat: repeat-y;
}

</style>
<title></title>
</head>

<body>
<div id="image" style="position: absolute; z-index: 2; left: ###px; top: ###px; width: ###px; height: ###px;"> <img border="0" src="test.jpg" width="200" height="200"> </div>


<div id="content" style="position: absolute; z-index: 2; left: ###px; top: ###px; width: ###px; overflow: visible;">
your content
</div>

<div id="navigation" style="position: absolute; z-index: 2; left: ###px; top: ###px; width: ###px; overflow: visible;">
your links
</div>


</body>


</html>






thats my codes but when I look at my page nothing shows up but white!did I place the images where they go in the right place????