Sie sind nicht angemeldet.

1

Freitag, 3. Juli 2009, 09:15

Background images werden nich dargestellt???

Ich habe folgendes Problem:

habe ein design in html/css angepasst nur meine hintergrund grafiken werden nicht angezeigt hier der code aus der css vielleicht weiß ja jemand rat

PHP-Quelltext

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@charset "utf-8";
/* CSS Document */

body{
width:1100px;
margin:auto;
}
#header{
background-image:url(../images/1.png);
width:1100px;
height:187px;
}

#nav{
width:1100px;
height:91px;
float:left;
}
#content{
width:681px;
height:auto;
float:left;
}
#content_header{
background-image:url(../images/10.png);
width:681px;
height:32px;
}
#content_right{
background-image:url(../images/11.png);
width:179px;
height:843px;
float:left;
}
#content_left{
background-image:url(../images/9.png);
width:240px;
height:843px;
float:left;
}
#footer{
background-image:url(../images/13.png);
width:1100px;
height:79px;
float:left;
}


der ordner images ist angelegt und es sind auch bilder drin ich habe keine ahnung warum keine bilder angezeigt werden

danke schon mal für eure hilfe!

Werbung

2

Freitag, 3. Juli 2009, 10:24

Zitat

#header{
background-image:url(../images/1.png);
width:1100px;
height:187px;
}




änder mal in:



Zitat



#header{
background: url('../images/1.png');
width:1100px;
height:187px;

}


Gruß David

Werbung

Ähnliche Themen