Active
Project:
Corporate Clean
Version:
7.x-2.2
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Issue tags:
Reporter:
Created:
2 Nov 2012 at 18:58 UTC
Updated:
15 Jun 2018 at 10:08 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
gtsopour commentedCorporate Clean 7.x-1.6 comes with 1, 2 and 3-column layout support. "Sidebar_first" has been moved to the left of the content and there is now a new region "Sidebar_second" positioned at the right of the content.
Therefore after the update process from Corporate Clean 7.x-1.5 or previous to Corporate Clean 7.x-1.6, you will notice that your existing Sidebar has been moved to left.
If you want to keep your existing Sidebar right, just move your blocks from "Sidebar_first" region to "Sidebar_second" through Home » Administration » Structure » Blocks.
Thanks
/George
Comment #2
cy08 commentedThanks for that.
Apparently, the width of the sidebar changed too? (or is it the width of the main content?)
Comment #4
Peters commentedSomehow the content in the middle column gets deformed. Anyone knows why?
See added screenshot of an embedded video
Comment #5
tasetta commentedis a 3rd/center sidebar possible?
I'm wanting one of my page to have three equal sections across the content area.
Comment #6
Dreao commentedHello,
How can I change the width of the first sidebar? The only place I found the option to was "container_12 .grid 4" and that also changes the first footer section. I just personally do not like how wide that sidebar is and would like to make it about 200px - 250px. Thank you for the help :)
Comment #7
dennis111 commentedEvery CMS is very bad with width and height of regions, block etc, nobody know what need to do for resize region. I spend 7-day, what i developed :)
Change end of style.css in corporateclean\
#sidebar-first {
width: 25%; /* - set float width left bar */
margin-left: 0px;
}
#sidebar-second {
width: 25%; /*- set float width right bar */
margin-left: 200px;
margin-right: 0px;
}
#content-inside {
width: 100%; /*- set width to screen width all content include left and right side bar*/
}
But I cannt change center part between left & rigth bars - Help me too!
If you dont know anser plese be quite, i see thousands bla-bla-bla: see documentation, see this see that but such information doesnt exist in this documents ...
Only i need ccs class name that i can set width and other proporion between left and right sidebar ...
I think easy write all PHP code then get what you need from CMS theme :)
Comment #8
Anatoliy Vorobyov commentedEverything is simple: sum of columns width should be same as parent width.
@dennis111 Here is styles for you if you want to make 25% for sidebars and 50% for main content, and all those 3 columns should be in one row:
Comment #9
Anatoliy Vorobyov commented