Elemental 2 Column Page Type

Permalink
I want to have a responsive 2 column page for the elemental theme. How can I do it? Nothing I have tried works.
Here is the code I have now and it is not working
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$this->inc('elements/header.php'); ?>
<main>
    <div class="container">
        <div class="row">
            <div class="col-sm-6">
                <?php
                $a = new Area('Left Column');
                $a->display($c);
                ?>
            </div>
            <div class="col-sm-6">
                <?php
                $a = new Area('Right Column');


Site:http://chestersbbq.com

Thanks.

sully210
 
hutman replied on at Permalink Reply
hutman
Did you turn your cache off for development? Are you changing things in the main.less file, which then gets compiled into the CSS file?
sully210 replied on at Permalink Reply
sully210
yes. I figured it out, finally. Thanks for the reply:)
sully210 replied on at Permalink Reply
sully210
OK, figured it out. It is a glitch of some sort in Opera??? Wierd but it is working on my phone and in other browsers.