2015-10-13, 12:38 PM
2015-10-13, 12:42 PM
global.css (line ~31)
You will also have to edit:
Square.css (line ~391)
.wrapper {
width: 984px;
You will also have to edit:
Square.css (line ~391)
.breadcrumb {
....
width: 984px;
min-width: 984px;
2015-10-13, 12:47 PM
but if i try that then it would look like this
![[Image: 0700907425.png]](https://camo.mybb.com/3ac15811d79f51f5f417397ac0ac502522a4d638/687474703a2f2f7075752e73682f6b4949426b2f303730303930373432352e706e67)
(those forum haven't extended with other parts)
(those forum haven't extended with other parts)
2015-10-13, 02:49 PM
You will also have to edit your index page templates for that.
Tweak this:
Tweak this:
<div class="forums" style="float: left; width: 724px;" original-title="">
2015-10-13, 04:43 PM
but when i perss this button
![[Image: ac453b4dca.png]](https://camo.mybb.com/9b3214bf48f3a86f9652d55261d42e0042e3a6bf/687474703a2f2f7075752e73682f6b49556a462f616334353362346463612e706e67)
then the Forum starts behaving weirdly (i mean if i perss that button 2 times then the forum becomes shorter and not comes back to its original place)
![[Image: fe201e2946.png]](https://camo.mybb.com/c8ff0da05e041c481040d1c38bb595a8827a0806/687474703a2f2f7075752e73682f6b495562442f666532303165323934362e706e67)
can't we make that button work like earlier but with this new forum size?
then the Forum starts behaving weirdly (i mean if i perss that button 2 times then the forum becomes shorter and not comes back to its original place)
can't we make that button work like earlier but with this new forum size?
2015-10-13, 04:54 PM
That part is controlled by jQuery
Ungrouped templates > headerincludes
Ungrouped templates > headerincludes
<script type="text/javascript">
jQuery(function($) {
$(".clickedbuttons").hide();
$(".buttons").click(function() {
$(".sidebar").animate({height: "hide", opacity: 0}, 500,
function() {
$(".forums").animate({width: "984px"}, 500); // THIS
});
$(this).hide();
$(".clickedbuttons").show();
$.cookie("sidebar","collapsed", {expires: 365});
return false;
});
$(".clickedbuttons").click(function() {
$(".forums").animate({width: "724px"}, 500, // AND THIS
function() {
$(".sidebar").animate({height: "show", opacity: 1}, 500);
});
$(this).hide();
$(".buttons").show();
$.cookie("sidebar","expanded", {expires: 365});
return false;
});
if($.cookie("sidebar") == "collapsed") {
$(".buttons").hide();
$(".clickedbuttons").show();
$(".forums").css("width","984px"); // AND ALSO THIS
$(".sidebar").hide();
};
});
</script>
2015-10-19, 01:13 PM
couldnt solve.
2015-10-19, 01:18 PM
this theme complicates everything