I can't seem to get a div to take my stylings.
It's a very simple layout right now. I have validated HTML and CSS still the div won't appear.
I have given it a bright red background to try to find it. Nothing.
here is the test domain http://pa.dlconcepts.com
what div isnt appearing?
what div isnt appearing? whats its id or class?
maybe because you have
maybe because you have display: none; set for #rightcolumn. That will make it not show up
I have removed the display:
I have removed the display: none and still nothing.
It's as if that div does not exist.
And yes, you were right about which div it was rightcolumn
#rightcolumn { color:
It is there, it's just underneath the floated content. You just need to add a left margin to shift it to where it needs to be.
#rightcolumn { color: #333333; width: 150px; background-color: #ff0000; position: relative; margin-left: 830px; }
Tried the left margin.
Tried the left margin. Didn't work.
That left me with a question anyway: if I have divs that are relative I expect them to but up next to each other. Why would I need to give it a left margin?
tecdac wrote:Tried the left
Tried the left margin. Didn't work. ...
:shrug:
Well, it worked before you started changing stuff. FFFfffffffffffffffffffffffffffffffffFFFFfffFF...
Try adding some content to sidebox or whatever it's called.
I deleted the css and to make
I deleted the css and to make sure the page was actually looking at that file. It is.
I have reuploaded it.
No freaking height
No freaking height parameter!
THANKS FOR YOUR HELP!!!!!!!!!!!!!!!!
you wouldnt need a fixed
you wouldnt need height, but content inside the div helps.
I will keep this in mind.
I will keep this in mind. CSS can be frustrating sometimes.

