Version 2.X.X
Version 1.X.X
You can use this extension for adding an easy to use Grid which are Framework independently.
It's pre configured for Bootstrap 4.
Important: The Bootstrap CSS/JS is not included
There are Grid options to choose for an TYPO3 editor. Something like
This work for
1) Install the extension gridelements. 2) Install the extension grid_for_gridelements 3) Include the static template 4) Be happy with an easy way to use Grids in TYPO3 :)
composer require schmidtwebmedia/grid-for-gridelements
You can customize the output in frontend and change the framework or add more options for Grid ratio. And change the path to JSON Config file in extension settings.
Please use following structure of json file:
{
"cols": [
{
"twocol": [
{
"label": "auto",
"class": [
"col-12 col-md",
"col-12 col-md"
]
},
...
],
"threecol": [
{
"label": "auto",
"class": [
"col-12 col-md",
"col-12 col-md",
"col-12 col-md"
]
},
...
],
"fourthcol": [
{
"label": "auto",
"class": [
"col-12 col-sm-6 col-md",
"col-12 col-sm-6 col-md",
"col-12 col-sm-6 col-md",
"col-12 col-sm-6 col-md"
]
},
...
]
}
],
"row": [
{
"class": "row"
}
]
}