Issues with your account? Bug us in the Discord!
CSS help
croxis
I am the walrus
in Zocalo v2.0
Alright. This Should Be Simple (TSBS), alas it isn't, but my background isn't working right. As in, not at all.
My site (croxis.net) has this for the basic structure:
body
div id=content
div id=left
/div
div id=right
/div
/div
/body
#content has a nice brown background color which isn't showing up and it is making me sad. Why?
My site (croxis.net) has this for the basic structure:
body
div id=content
div id=left
/div
div id=right
/div
/div
/body
#content has a nice brown background color which isn't showing up and it is making me sad. Why?
Comments
If the DIV Tag can not find the Content ID reference within the style sheet it will not produce the desired result.
Unless I'm missing something?
:)
Your #Content label is missing...
;)
[CODE]
#left {
float: left;
width: 550px;
background: #66360E;
}
#right {
width: 250px;
float: left;
background: #66360E;
}
/* All the content boxes belong to the content class. */
.entry { border: 1px solid #77471F; }
/* Text Styles */
[/CODE]
it was #content { background:#66360E;}
Is your DIV tag still referencing the (non-existant) "Content" Class as an ID?
:confused: