Posted by Martin Jay on 04/16/06 15:58
In message <44421e85$0$27445$882e0bbb@news.ThunderNews.com>, Bastard
<newaroundhere@hotmail.com> writes
>So my problem is in the CSS files? I can ignore the HTML? I've just lost
>another 2 hours of my life picking and poking with nothing to show for it.
It's not a wasted two hours. Remember all the things you've learned. :)
>As I'm just learning CSS I'm still learning all the tags. By the way, when
>you say elements are these things like "footer, header, etc?"
Yes. Something like:
..footer{
border: 1px Red Solid;
}
or
..Header{
background-color: Red;
}
You can also do the same with HTML tags. For example:
p{
border: 1px Red Solid;
}
>I'm not looking for the answer but a shove in the right direction would help
>prevent me going grey/bald!
It's all down to a small keyboard mistake: look at #maincol in the
stylesheet. It appears that you've accidentally deleted the width.
width:;
instead of
width: 500px;
or whatever you want.
--
Martin Jay
[Back to original message]
|