We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Sascha
  2. General Discussion
  3. Wednesday, 02 March 2016
  4.  Subscribe via email
Hello,

i've a quetstion about the class t3-sidebar.
If I resize the t3-sidebar smaller, what must i do, that the t3-content becomes the same size bigger.
In my Site I've resize the t3-sidebar and after that I had an column between t3-sidebar and t3-content (look at the picture).

Have anybody an idea?

Thank you very much and best regards...

Sascha
Attachments (1)
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi,

I think you did some customization with style. By default the size of sidebar is defined in the block file, for example:

Open the file and you would see the following code:

<div class="t3-sidebar t3-sidebar-1 col-xs-6  col-md-3  col-md-pull-6 <?php $this->_c($vars['sidebar1']) ?>">
<jdoc:include type="modules" name="<?php $this->_p($vars['sidebar1']) ?>" style="T3Xhtml" />
</div>


In the code, the sidebar-1 width is set to col-md-3. The same for sidebar-2. You can change the col-md-3 to col-md-2 or 4, however, please make sure you have to change the width of other section: main content section and sidebar-2. The total col of the page is 12 (follow bootstrap 3 grid system).

If you want to keep the same grid system, but change to width of the sidebar with CSS, you can add the following CSS rules to the file: templates/t3_bs3_blank/css/custom.css

.t3-sidebar-1 {
width: 200px;
}


Regards.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.