I need help with the Clean Theme

I need help with the Clean Theme

by Lipson nuwags -
Number of replies: 7

Need some help with changing my background color in "Clean"Theme

(Edited by Mary Evans - original submission Sunday, 21 July 2013, 2:41 PM)

Average of ratings: -
In reply to Lipson nuwags

Re: Clean Theme

by Mary Evans -

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 reply to Mary Evans

Re: Clean Theme

by Lipson nuwags -

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

In reply to Lipson nuwags

Re: Clean Theme

by Mary Evans -

Unfortunately you cannot add two images however you could add one image that contains two pictures. Like this...

duel image

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

In reply to Mary Evans

Re: Clean Theme

by Lipson nuwags -

Thank u

In reply to Lipson nuwags

Re: Clean Theme

by Mary Evans -

If you upload this image...

sprite

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