Move header slides images to the side

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Jan 21, 2013 3:42 pm
Reply with quote
Report this post
Hi,
I need to move the images of the slides to the side like this website: http://www.socialpatient.com/

I have moved the text of the slides inserting in the ovverride.css the following code
Code: Select all
.gkIsWrapper-gk_startup .gkIsText{
   margin-top:0%;
   margin-left:0px;
}


I see that the position of the image's slide is determined by this code
Code: Select all
#gkIs-gk-is-87 .gkIsImage img {
    width: 454px;
    margin-left: -227px;
}

So i tried to insert this code in the override.css:
Code: Select all
.gkIsSlide.active{
    background-color:black;
    margin-left:-400px;
}

The color became black, but the slide doesn't move...
The "property margin-left: -227px;" that is inside the page override mine.

How can I move the slides' images to the side?

Thanks
User avatar
Senior Boarder

Konrad M
Tue Jan 22, 2013 6:26 pm
Reply with quote
Report this post
Hi,
please try with this:
Code: Select all
.gkIsWrapper-gk_startup .gkIsSlide.active {left: 35%}
.gkIsWrapper-gk_startup .gkIsText {margin-left: 0}
.gkIsWrapper-gk_startup .gkIsText.active {
top: 100px;
}

.gkIsWrapper-gk_startup.loaded .gkIsImage img {
top: 300px;
}

User avatar

GK User
Wed Jan 23, 2013 10:19 am
Reply with quote
Report this post
Thanks, it works with
Konrad M wrote:Hi,
please try with this:
Code: Select all
.gkIsWrapper-gk_startup .gkIsSlide.active {left: 35%}
User avatar
Senior Boarder


cron