diff options
author | Afterster <maxime@chamley.eu> | 2013-10-24 14:28:37 +0200 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-10-30 19:26:53 -0400 |
commit | ae6890a93cab2b45a186e52e7245c5a482a23903 (patch) | |
tree | 8a1f2f5b976baaa14dacd423f88b048d7587387b | |
parent | a589211bb6291897e73877747ee154570e819b9f (diff) | |
download | ampache-ae6890a93cab2b45a186e52e7245c5a482a23903.tar.gz ampache-ae6890a93cab2b45a186e52e7245c5a482a23903.tar.bz2 ampache-ae6890a93cab2b45a186e52e7245c5a482a23903.zip |
Fix Fresh theme display on large screens
-rw-r--r-- | themes/fresh/templates/default.css | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/themes/fresh/templates/default.css b/themes/fresh/templates/default.css index 370b7f40..e6713f68 100644 --- a/themes/fresh/templates/default.css +++ b/themes/fresh/templates/default.css @@ -97,7 +97,7 @@ hr { ***********************************************/
#maincontainer
{
- width:1315px;
+ width:100%;
}
#sidebar
@@ -109,7 +109,8 @@ hr { {
margin-top:32px;
margin-left:160px;
- width:945px;
+ margin-right:230px;
+ width:auto;
}
.box
@@ -121,16 +122,19 @@ hr { {
width:180px;
margin-top:32px;
- margin-left:1120px;
- position:absolute;
+ right:10px;
+ /* Set position to fixed to 'pin' the playlist */
+ /*position:fixed;*/
+ position: absolute;
clear:both;
}
#footer
{
- width: 1100px;
+ width: auto;
margin-top: 20px;
margin-bottom: 120px;
+ margin-right: 230px;
}
/***********************************************
@@ -141,7 +145,14 @@ hr { background:#222;
line-height:30px;
height:50px;
- padding:7px;
+ padding-top:7px;
+ padding-bottom:7px;
+ width: 100%;
+}
+
+#headerbox
+{
+ margin-right: 7px;
}
#header .box-inside
@@ -1027,6 +1038,7 @@ ins,#rightbar a #header #headerlogo
{
float:left;
+ margin-left: 7px;
}
#header .box-inside div,#header .box-inside form,#rightbar #rb_action li,.star-rating li
|