I am using a TabbedContent script that creates a large width div. This div in turn has several unordered lists in it, each list will correspond to a tab. The script then adjusts the width of the large div to fit the list in the area where it's showing content.
Right now, I cannot set a fixed div in it or an absolute div, for the scroll will no longer work. What I need is a 2 column setup, where the left column needs to stay fixed while the right column has text. Both need to be inside the list and I need to be able to replicate it on the other tabs.
Here's the .js I'm using to run the tab system:
var TabbedContentSolutions = {
init: function() {
$(".tab_thumb").click(function() {
$(this).siblings().removeClass('active_thumb');
$(this).addClass('active_thumb');
var background = $(this).parent().find(".moving_bg2");
$(background).stop().animate({
left: $(this).position()['left']
}, {
duration: 0
});
TabbedContentSolutions.slideContent2($(this));
});
},
slideContent2: function(obj) {
var margin = $(obj).parent().parent().find(".slide_content2").width();
margin = margin * ($(obj).prevAll().size() - 1);
margin = margin * -1;
$(obj).parent().parent().find(".tabslider2").stop().animate({
marginLeft: margin + "px"
}, {
duration: 0
});
}
}
$(document).ready(function() {
TabbedContentSolutions.init();
});
Here's the CSS that is controlling the .js and the divs:
.tabbed_content2 {
background-color: ##F7931E;
width: 1000px;
}
.tabbed_content2 .slide_content2 {
overflow: hidden;
position: relative;
width: 1000px;
}
.tabs2{
margin-top: 10px;
margin-left: 10px;
height: 32px;
width: 670px;
position: relative;
float: right;
}
.tabs2 .tab_thumb{
height: 32px;
width: 32px;
margin-left: 9px;
float: left;
cursor: pointer;
}
.tabslider2{
width: 17000px;
overflow-x: hidden;
}
.tabslider2 ul {
float: left;
width: 980px;
height: 323px;
margin: 0px;
padding: 0px;
padding-right: 10px;
padding-left: 10px;
padding-top: 10px;
overflow-x: hidden;
}
#_solutions{
width: 980px;
height: 300px;
padding-left: 10px;
padding-right: 10px;
}
.solutions_left{
width: 273px;
height: 330px;
padding-right: 10px;
float: left;
}
.solutions_right{
width: 670px;
height: 100%;
overflow: auto;
float: left;
}
.tabslider2 ul li {
padding-bottom: 4px;
list-style-type: none;
}
.active_thumb{
opacity: .10;
}
And here is the basic div setup I'm using to make the tabs:
<div id="_Content">
<div id="_solutionsWrap">
<div class='tabs2'>
<div class='moving_bg2'>
</div>
<span id="solucoes" class='tab_thumb' style="display:none">
asdasdasd
</span>
<div id="_solutions">
<div class='tabbed_content2'>
<div class='slide_content2'>
<div class='tabslider2'>
<ul>
<li>
<div class="solutions_left">
<p></p>
</div>
<div class="solutions_right">
<h1>solutions</h1>
<p></p>
<p></p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
I know it sounds confusing, but there will be at least 17 different tabs, and each will need to have a non scrolling let bar to display an image.
Absolute positioning will simply not work, everytime you'd try to switch tabs, the div would remain inside the display area.
Fixed has the same problem. I have no idea how to solve this problem, as I know little to no Javascript, much less jQuery.
I not sure about your tab system, but one from jquery-ui works fine -
http://jsfiddle.net/jg5CC/2/
html:
css:
js: