hello,
For i have changed the default color the newspaper theme for my site, so i also want to change the background color of the login form as well.
I have searched the style.css file, but not sure which css style i should edit.
anyone can help?
thanks
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/K8X0CD9pg
.white-popup-block:after{
background: red!important;
}
Let me know how it goes.
Thanks!
Thanks for your tip @Andrei L.
I have found the main style codes in the style.css file and changed the relevant background styles like this:
.white-popup-block:after {
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: block;
background: rgba(255, 205, 0, 0.9);
background: -moz-linear-gradient(45deg, rgba(255, 205, 0, 0.8) 0%, rgba(255, 203, 127, 0.8) 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(255, 205, 0, 0.8)), color-stop(100%, rgba(255, 203, 127, 0.8)));
background: -webkit-linear-gradient(45deg, rgba(255, 205, 0, 0.8) 0%, rgba(255, 203, 127, 0.8) 100%);
background: -o-linear-gradient(45deg, rgba(255, 205, 0, 0.8) 0%, rgba(255, 203, 127, 0.8) 100%);
background: -ms-linear-gradient(45deg, rgba(255, 205, 0, 0.8) 0%, rgba(255, 203, 127, 0.8) 100%);
background: linear-gradient(45deg, rgba(255, 205, 0, 0.8) 0%, rgba(255, 203, 127, 0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcd00', endColorstr='#ffe67f', GradientType=1);
z-index: -2;
}
