Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok i coded some html pages. I integrated a jQuery slider there. Slider name orbit slider. My site use fluid layout. If you minimize the page vertically, you can see the right corner images moving left side.

But i have some problem. I want to move the right side slider navigation too when the user shrink the page vertically.

The problem is i couldn't apply 100% width in the slider. Slider automatically create the width based on image size. I don't know how to change it to 100% width.
You can check the slider in this page.

Click here to see the page

This is my javascript file.

Javascript file

This is the place where the javascript uses width.

var b = 0,
p = 0,
h, v, u, f = d(this).addClass("orbit"),
c = f.wrap('<div class="orbit-wrapper" />').parent();
f.add(h).width("1px").height("1px");
var e = f.children("img, a, div");
e.each(function () {
    var a = d(this),
    b = a.width(),
    a = a.height();
    b > f.width() && (f.add(c).width(b), h = f.width());
    a > f.height() && (f.add(c).height(a), v = f.height());
    p++
});

You can check it in the javascript file. I want the width 100%. Please give me some idea. Thanks

share|improve this question
2  
1+ That is a good question. Provided code, working sample... I have to go out now otherwise would have helped. – Aliostad Jul 10 '11 at 8:11

1 Answer

up vote 2 down vote accepted

Can you force the slider with to be 100&% by using the !important css? I tried it via firebug and it seemed to work.

example change your css to:

.orbit-wrapper:
{
    width: 100% !important;
}
share|improve this answer
+1 Awesome bro. Its working. :) – Giri Jul 10 '11 at 9:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.