Hi,
I am noob to opencart, but I know php, so I saw in category may add $column_left. In home.tpl also has a $column_left however the default template that shows nothing, I need to add the menu in the $column_left.
Can you help please?
I believe those PHP functions populate the page with built-in Admin Template Manager: Follow this - System>>Design>>Layouts - page.
You can probably accomplish what you want to do by using this built-in layout manager.
If not, the following might help. To control the layout, Opencart uses CSS Bootstrap which includes a grid system.
Follow the link to the site and look for grid system.
http://getbootstrap.com/css/#grid
The following example would build 3 even columns within a row:
You can probably accomplish what you want to do by using this built-in layout manager.
If not, the following might help. To control the layout, Opencart uses CSS Bootstrap which includes a grid system.
Follow the link to the site and look for grid system.
http://getbootstrap.com/css/#grid
The following example would build 3 even columns within a row:
Code: Select all
<div class="row">
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4">.col-md-4</div>
</div>
Who is online
Users browsing this forum: No registered users and 6 guests