Hallo, habe mal eine Frage zum Thema “Flow” Theme.
Ich möchte gerne ein etwas anderes Hintergrundbild per CSS einfügen.
Folgenden Code möchte ich verwenden:
body {
background: #FFFFFF url('images/page.png') bottom left repeat-x fixed;
background: url('images/pageglare.png') no-repeat, -webkit-linear-gradient(top, rgba(213, 213, 213, 0.09) 0, rgba(255, 255, 255, 0.24) 250px) no-repeat, url('images/page.png') bottom left repeat-x, -webkit-linear-gradient(top, #E3E3E3 0, #FFFFFF 250px) no-repeat;
background: url('images/pageglare.png') no-repeat, -moz-linear-gradient(top, rgba(213, 213, 213, 0.09) 0, rgba(255, 255, 255, 0.24) 250px) no-repeat, url('images/page.png') bottom left repeat-x, -moz-linear-gradient(top, #E3E3E3 0, #FFFFFF 250px) no-repeat;
background: url('images/pageglare.png') no-repeat, -o-linear-gradient(top, rgba(213, 213, 213, 0.09) 0, rgba(255, 255, 255, 0.24) 250px) no-repeat, url('images/page.png') bottom left repeat-x, -o-linear-gradient(top, #E3E3E3 0, #FFFFFF 250px) no-repeat;
background: url('images/pageglare.png') no-repeat, -ms-linear-gradient(top, rgba(213, 213, 213, 0.09) 0, rgba(255, 255, 255, 0.24) 250px) no-repeat, url('images/page.png') bottom left repeat-x, -ms-linear-gradient(top, #E3E3E3 0, #FFFFFF 250px) no-repeat;
-svg-background: url('images/pageglare.png') no-repeat, linear-gradient(top, rgba(213, 213, 213, 0.09) 0, rgba(255, 255, 255, 0.24) 250px) no-repeat, url('images/page.png') bottom left repeat-x, linear-gradient(top, #E3E3E3 0, #FFFFFF 250px) no-repeat;
background: url('images/pageglare.png') no-repeat, linear-gradient(to bottom, rgba(213, 213, 213, 0.09) 0, rgba(255, 255, 255, 0.24) 250px) no-repeat, url('images/page.png') bottom left repeat-x, linear-gradient(to bottom, #E3E3E3 0, #FFFFFF 250px) no-repeat;
background-attachment: fixed, fixed, fixed, fixed !important;
margin:0 auto;
position: relative;
width: 100%;
min-height: 100%;
left: 0;
top: 0;
cursor:default;
overflow:hidden;
}
Unter \out\flow\src\css\styles.min.css steht alles in einer Zeile. Und so richtig blick ich da nicht durch, wo genau da etwas hinzugefügt werden soll.
Kann mir jemand helfen?
Besten Dank …