This topic has 9 replies, 2 voices, and was last updated 10 years, 7 months ago by Anonymous.
Tagged: background, css, musicplay
Viewing 10 posts - 1 through 10 (of 10 total)
The attached capture of the MusicPlay theme demo shows the background as white #ffffff, this takes place when you click on a new page, between loading, it flashes up this white background before it loads the background image in.
I would like to be black #000000 — How can I do this please?
Go to style.css and search for this #preloader_iva_wrap and replace this
#preloader_iva_wrap {
position: relative;
padding: 20px 0;
margin-top: 20px;
margin-bottom: 20px;
background-color:#ffffff;
background-color: rgba(255,255,255,0.8);
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
transition: all .3s ease-out;
}
with,
#preloader_iva_wrap {
position: relative;
padding: 20px 0;
background-color:#ffffff;
background-color: rgba(255,255,255,0.8);
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
transition: all .3s ease-out;
}
I have replaced that CSS code Shailaja, but that hasn’t fixed the issue, the background is still white?
I also tried:
#preloader_iva_wrap {
position: relative;
padding: 20px 0;
background-color:#000000;
background-color: rgba(255,255,255,0.8);
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
transition: all .3s ease-out;
}
Please change the background color (Body Background Properties) in Theme Options/ Styling/ Body Background Properties
Yes, this is set to: #000000
Do you have any other suggestions? Thanks.
No, we don’t have any other ways to suggest you. This is the only way we have provided in theme options. Is there anything else that I can assist you with?
So is it something on my end? Where you able to get the screen to go black instead of white on your end?
Please advise.
I resolved this by changing this line in style.css
from:
body { margin:0; padding:0; }
to:
body { margin:0; padding:0; background-color: #000000; }
Viewing 10 posts - 1 through 10 (of 10 total)
You must be logged in to reply to this topic.