EDIT:
Funktoniert Jetzt :
EDIT:
Funktoniert Jetzt :
Hast du das direkt in der Style.css geändert oder direkt in der PHP Datei?
Wieso benutzt du zweimal body{}?
<!DOCTYPE html>
<html>
<head>
<style>
body
{
background-image: url("http://www.habbox.com/images/calvin/…ec_bg_viilu.gif");
background-repeat: repeat-xy;
background-attachment: fixed;
}
</style>
</head>
<style>
body
{
background-image: url("http://habbox.com/text/72/DRIVDER");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
</style>
</body>
</html>
So würde ich´s machen:
<html>
<head>
<style>
body
{
background: url('http://url.de/img.jpg') no-repeat;
background-attachment: fixed;
background-position: 50% 50%;
}
</style>
</head>
<body>
</body>
</html>
Hää ? 2 background kann nicht gehen, weil es nur zu einem Ordner geht da fehlt nocht die Bild Datei?
Und die [ " ] kannste weglassen geht auch ohne
Das erst geht nicht weil es im <head> </head> drinne ist.
Sorry aber es geht immer nur ein code :c
Sorry aber es geht immer nur ein code :c
Probiers so! Du kannst dem Body doch auch nur einen Background zuweisen
background-image: url("http://www.habbox.com/images/calvin/…ec_bg_viilu.gif");
versuch:
background: url(http://www.habbox.com/images/calvin/…ec_bg_viilu.gif);
background-image: url("http://www.habbox.com/images/calvin/…ec_bg_viilu.gif");
versuch:
background: url(http://www.habbox.com/images/calvin/…ec_bg_viilu.gif);
Das mit Background-image war schon richtig ;).
- Xseam
Kann mir jemand vieleicht den code verbessern und hier als kommi schreiben währe
sehr dankbar
Hier der verbesserte code:
body {
background: url(http://habbox.com/text/72/DRIVDER);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
und nö background-image: url ist nicht richtig
Wenn ich anstadt
diesen code
body
{
background-image: url("http://habbox.com/text/72/DRIVDER");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
diesen nehme
body {
background: url(http://habbox.com/text/72/DRIVDER);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
wird der background nicht mehr angezeigt
Alles anzeigenWenn ich anstadt
diesen codebody
{
background-image: url("http://habbox.com/text/72/DRIVDER");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
diesen nehme
body {
background: url(http://habbox.com/text/72/DRIVDER);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}wird der background nicht mehr angezeigt
Mach mal bitte ne style.css füg dann den unteren code ein und spiel halt mit ('gdfssdgf') oder ("sagsgf") rum
Achja jetzt nochmal zu dem eigentlichen Problem du kannst nicht 2 body tags benutzen dein "Logo" sag ich jetzt mal musst du in nen container setzen
richtig wäre dann:
#logo {
background-image: url(http://habbox.com/text/72/DRIVDER);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
body {
background: url("http://www.habbox.com/images/calvin/…ec_bg_viilu.gif");
background-repeat: repeat-xy;
background-attachment: fixed;
}
HIER KOMPLETT AUFGEPEPT:
<!DOCTYPE html>
<html>
<style>
body {
background: url(http://www.habbox.com/images/calvin/…ec_bg_viilu.gif);
background-repeat: repeat-xy;
background-attachment: fixed;
}
#logo {
background-image: url(http://habbox.com/text/72/DRIVDER);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
</style>
<div id="logo"></div>
</html>
funkt nicht
style.css
#logo
background-image: url(http://habbox.com/text/72/DRIVDER);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
body {
background: url("http://www.habbox.com/images/calvin/…ec_bg_viilu.gif");
background-repeat: repeat-xy;
background-attachment: fixed;
}
page.htm
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
</body>
</html>
Wenn ich das richtig verstehe, möchtest du einen Background einfügen.
Ich' würde es wie folgt machen..
background: url('../img/bild.png') #DDDDDD;
background-repeat: no-repeat;
background-position: top right;
background-attachment: fixed;
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!