• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Background Color repeat ?

Furtano

Neues Mitglied
Hallo,
ich habe eine Website in HTML/CSS programmiert und will das der Hintergrund in #navbar
sich wiederholt (weißer Hintergrund), damit es unten weitergeht.

backgroundproblem.jpg

Code:
#wrapper
{
    height:755px;
    width:1007px;
    margin:0px;
    float:left;
    
}

#header
{
    height:54px;
    width:1007px;
    background-image:url(../bilder/post_03.jpg);
    background-repeat:no-repeat;
    margin: 0;
    padding: 0px 0px 0px 0px;
    float:left;
}
#header2
{
    height:3px;
    width:1000px;
    background-color:#FFF;
    margin: 0;
    padding: 0px 0px 0px 0px;
    float:left;
}
#auswahl
{
    height:120px;
    width:1000px;
    border-top:3px;
    border-color:#FFF;
    background:#FFF;
    border:0px;    
    float:left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

#navibar
{
    background-color:#FFF;
    width:329px;
    height:580px;
    float:left;
    text-align:left;
    font-family:"Times New Roman", Times, serif;
    font-size:19px;
    padding-top:10px;
    background-repeat:repeat;
}

.hlink
{
    background:url(../bilder/linkb_16.jpg);
    color:#FFF;
    width:324px;
    height:35px;
    padding-left:35px;
    padding-top:5px;
    margin-top:10px;
    
}

.ulink
{
    background:url(../bilder/linku_16.jpg);
    color:#FFF;
    width:324px;
    height:35px;
    padding-left:55px;
    padding-top:5px;
    margin-top:0px;
    
}
.hlink a
{
    color:#FFF;
}

.hlink a:hover
{
    color:#ff7800;
}

.hlink visited
{
    color:#FFF;
}

.ulink a
{
    color:#FFF;
}

.ulink a:hover
{
    color:#ff7800;
}

.ulink visited
{
    color:#FFF;
}



#content
{
    float:left;
    background-color:#FFF;
    width:661px;
    height:590px;
    text-align:left;
    color:#823d00;
    font-size:15px;
    font-family:"Times New Roman", Times, serif;
    padding-left:10px;
}

#footer
{
    background-color:181437;
    color:#FFF;
    font-family:"Times New Roman", Times, serif;
    width:1007px;
    height:25px;
    float:right;
    text-align:right;
}
#footer a:hover
{
    color:#FFF;
}
#footer a:visited
{
    color:#FFF;
}

#footer a
{
    color:#FFF;
}
 
Hallo.

Ich glaube nicht das du mit HTML/CSS irgend etwas programmiert hast.
Eine #navbar gibt es in deinem CSS auch nicht.

Falls du die #navibar meinst, der Hintergrund dort wiederholt sich ja.
Allerdings ist nach 580px Schluss da das die Höhe ist die du für #navibar in deinem CSS angegeben hast.

Wenn´s also noch weiter gehen soll musst du die Höhe ändern.

Gruss
Elroy
 
Zurück
Oben