Bootstrap3 grids
Permalink
I have a C5 Bootstrap "layout" which generates code like this..
Actually I'd like it to look like this..
Where about in Concrete can I override these classes?
Thanks.
<div class="row"> <div class="col-sm-2">...</div> <div class="col-sm-4">...</div> <div class="col-sm-4">...</div> <div class="col-sm-2">...</div> </div>
Actually I'd like it to look like this..
<div class="row"> <div class="col-lg-2">...</div> <div class="col-lg-4">...</div> <div class="col-lg-4">...</div> <div class="col-lg-2">...</div> </div>
Where about in Concrete can I override these classes?
Thanks.
I think you can do this by over-riding the theme template files. Have a squiz at, eg, concrete\themes\elemental\left_sidebar.php, and the php files in the elements directory. If that seems like the sort of thing you want to be playing with, you can over-ride those files by placing your own versions somewhere under the application directory.
Hi Conkreet,
An alternative to changing default layout grid classes is to use custom layout presets.
"Adding Complex Custom Layout Presets in Your Theme"
http://documentation.concrete5.org/developers/designing-for-concret...
An alternative to changing default layout grid classes is to use custom layout presets.
"Adding Complex Custom Layout Presets in Your Theme"
http://documentation.concrete5.org/developers/designing-for-concret...
Thanks all for your answers. I think in my particular case MrKDilkington's answer is probably the best fit.
Thanks again
Thanks again
Look at the video in 10:00 minutes.
http://documentation.concrete5.org/developers/designing-for-concret...