Grids & Classes?

ThemeBurn SupportForumsOpenCart ThemesBurnEngineGrids & Classes?

This topic has been marked as not resolved.

Are there any pre-built-in grids and classes code that can be used with this template (Trendo)?

February 21, 2019 at 2:51 am #67269

Hi,

Yes, there is the default Bootstrap 3 grid system:

https://getbootstrap.com/docs/3.4/css/#grid

Or you can use the “min width go to next row” custom grid:

HTML

<div id="grid_ID" class="tb_grid">
  <div class="item_class">
  <div class="item_class">
  <div class="item_class">
  <div class="item_class">
  <div class="item_class">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>

Item class is not mandatory. Unfortunately, you will have to leave a couple of empty <div>s.

CSS

#grid_ID > div {
  min-width: 250px;
}

BR,
ThemeBurn team

February 22, 2019 at 4:49 pm #67288
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.