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/
It worked thanks for the help
Hi,
I have just deleted your other request for help. Please Do NOT add more discussions about the same theme. You have already go this one open so might as well ask for help here.
As for help with adding images to Clean theme it depends on where/ how you want to add them.
Thanks
Mary
in my front setting i can only add or insert 1 image, then how can i add more than two images and make them change am not good with css
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
Thank u
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