Need some help with changing my background color in "Clean"Theme
(Edited by Mary Evans - original submission Sunday, 21 July 2013, 2:41 PM)
Need some help with changing my background color in "Clean"Theme
(Edited by Mary Evans - original submission Sunday, 21 July 2013, 2:41 PM)
html, body { background-color: #FFFFFF; }
Use this CSS in Clean custom settings page and change #FFFFFF to the colour of your choice. http://www.visibone.com/colorlab/
Unfortunately you cannot add two images however you could add one image that contains two pictures. Like this...
Then you can alternate the two different images using the CSS3 animation property.
This tutorial explains how to do this.
http://designshack.net/articles/css/infinitephotobanner/
Cheers
Mary
If you upload this image...
in Clean theme logo uploader and then add this CSS...
a.logo {
width:50px;
height:60px;
background-position: -50px 0;
position:relative;
animation:mymove 5s infinite;
}
@keyframes mymove {
from {background-position: -50px 0}
to {background-position: 0 0}
}
You will have a small slider one image sliding to the next one in smooth transition.
Hope this helps?
Cheers
Mary