Browse Source

Theme: Fix for background-image not loading in some mobile browsers (Dolphin, Chrome on Android).

reliberate 9 years ago
parent
commit
5e0a7bdca7
1 changed files with 9 additions and 0 deletions
  1. 9 0
      themes/default/template.php

+ 9 - 0
themes/default/template.php

@@ -154,6 +154,11 @@
 
 
 <style type='text/css'>
 <style type='text/css'>
 
 
+	html {
+		height: 100%;
+		width: 100%;
+		}
+
 	body {
 	body {
 		z-index: 1;
 		z-index: 1;
 		position: absolute;
 		position: absolute;
@@ -177,6 +182,10 @@
 		?>
 		?>
 		background-repeat: no-repeat;
 		background-repeat: no-repeat;
 		background-attachment: fixed;
 		background-attachment: fixed;
+		webkit-background-size:cover;
+		-moz-background-size:cover;
+		-o-background-size:cover;
+		background-size:cover;
 		}
 		}
 
 
 	div#footer {
 	div#footer {