tags:

views:

16

answers:

2

How would I do this? The subject isn't very explained, so for an example: the black line at the top of the footer.

Thanks!

+1  A: 

Do you mean <hr />?

You can use CSS to set the colour and size, e.g.

hr {
    height:25px;
    background-color: #00FF00;
    border:0;
}
Artelius
Thank you very much!
Anonymous the Great
(I will accept it as an answer in nine minutes..)
Anonymous the Great
+2  A: 
#footer {
    width: 100%;
    height: 200px;
    border-top: 1px solid #000;
}
N. Lucas