Staredit Network

Staredit Network -> Lite Discussion -> Layout Coding
Report, edit, etc...Posted by Sinx on 2005-08-04 at 22:38:11
Ok i have a css layout and theres a problem with it. I coded it and i am new to tableless layouts.
Well the css code is:
CODE
#Container {
background-image: url(images/Background.gif)
}
#Header {
width: 752px;
height: 174px;
background-image: url(images/Header.gif);
}
#Sidebar {
background-image: url(images/Sidebar.gif);
width: 150px;
margin-left: 0%;
background-repeat: repeat-y;
height: 100%;
z-index: 99;
}
#Content {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
text-decoration: blink;
z-index: 99;
height: 100%;
width: 752px;
margin-left: 22%
}
#Wrapper {
background-image: url(images/Content.gif);
width: 752px;
height: 100%;
margin-left: 11%;
background-repeat: repeat-y
}
#Footer {
background-repeat: no-repeat
}

and the html code is:
CODE
<body id="Container">
<div id="Wrapper">
<div id="Header"></div>
<div id="Content">Blah</div>
<div id="Sidebar"><br>
 <img src="images/Site.gif" alt="">Site Content Here<img src="images/graphics.gif" alt="">Graphics Here<img src="images/Guide.gif" alt="">Guides Here<img src="images/Tut.gif" alt="">Tutorials Here<img src="images/Aff.gif" alt="">Affilates Here</div>
<div id="Footer"><img src="images/Footer.gif" width="752" height="20" alt=""></div>
</div>
</body>

Well the problem is that the content spot is above the sidebar and messes up the layout
Report, edit, etc...Posted by brutetal on 2005-08-04 at 23:55:04
It looks fine. Maybe more details is needed.

To me i think the side bar is suppose to align left and the content align center.

CODE

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
#Container {
background-image: url(images/Background.gif)
}
#Header {
width: 752px;
height: 174px;
background-image: url(images/Header.gif);
}
#Sidebar {
background-image: url(images/Sidebar.gif);
width: 150px;
margin-left: 0%;
background-repeat: repeat-y;
height: 100%;
z-index: 99;
}
#Content {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
text-decoration: blink;
z-index: 99;
height: 100%;
width: 752px;
margin-left: 22%
}
#Wrapper {
background-image: url(images/Content.gif);
width: 752px;
height: 100%;
margin-left: 11%;
background-repeat: repeat-y
}
#Footer {
background-repeat: no-repeat
}
</style>
</head>
<body id="Container">
<div id="Wrapper">
<div id="Header"></div>
<div id="Content">
 <div align="center">Blah</div>
</div>
<div id="Sidebar">
 <div align="left"><br>
     <img src="images/Site.gif" alt="">Site Content Here<img src="images/graphics.gif" alt="">Graphics Here<img src="images/Guide.gif" alt="">Guides Here<img src="images/Tut.gif" alt="">Tutorials Here<img src="images/Aff.gif" alt="">Affilates Here</div>
</div>
<div id="Footer"><img src="images/Footer.gif" width="752" height="20" alt=""></div>
</div>
</body>
</html>


Okay copy and paste and try that code, I think that is what you where looking for or somthing like that. But it shows what I think you mean.
Report, edit, etc...Posted by Sinx on 2005-08-05 at 01:17:37
ok i uploaded it to another server
http://www.crazyneopia.net/testinglayout/
well you see that right there?
well the blank above the sidebar isnt suppose to be there.
well hopefully someone could help me.
Report, edit, etc...Posted by brutetal on 2005-08-05 at 01:45:27
Oh I see it!

try removing that blinking text. and then save and see. It should be removed.

ps: LMFAO ITS A NEOPETS SITE LMFAO OLMFAO LMFAO LMFAO!!!!! LMFAO LMFAO LMFAO!!!!!!


OKA OKAY OKAY, sorry had to get that out. Couldn't resist.
Report, edit, etc...Posted by Sinx on 2005-08-05 at 01:49:36
its not my layout also im coding it for a starcraft signature
same thign its still not working correctly
Report, edit, etc...Posted by brutetal on 2005-08-05 at 01:58:46
Thats what you want us to think!

okay
Report, edit, etc...Posted by Sinx on 2005-08-05 at 02:04:08
really i mean i am i hate neopets i work for a few of the sites but do nothing only for a kind of payment. well i gtg now
Report, edit, etc...Posted by brutetal on 2005-08-05 at 02:09:29
I know why, the picture of the thing is too small you need to make it bigger to fit it.
Its not code problem its picture size problem.
Report, edit, etc...Posted by Sinx on 2005-08-05 at 16:04:28
ok i tried doing that and it didnt work
Report, edit, etc...Posted by Lisk on 2005-08-05 at 17:26:33
The menu text looks... weird in Opera.
Just see for yourself.
Report, edit, etc...Posted by Sinx on 2005-08-07 at 02:48:17
umm i got this fixed and really? i looked in the finished version of the page and it looks fine

ADDITION:
ok something new now i have another layout and its not mine well anyway the layout works fine. But in IE it is messed so can anyone help me?
Report, edit, etc...Posted by brutetal on 2005-08-07 at 03:59:16
Tell them to use Firefox or whatever the browser it looks good on.
Report, edit, etc...Posted by Sinx on 2005-08-07 at 15:17:25
well mostly the people who use the neopet sites use IE since they think it is the only browser there is cause they are usually n00bs
Report, edit, etc...Posted by brutetal on 2005-08-07 at 18:24:05
Just have like a javascript or somthing and if it detects that if their using IE forward it to a page and have them use firefox to continue.
Next Page (1)