spoloso
spoloso

Reputation: 15

when use Bootstrap not works

I used Bootstrap for my template in wordpress for split header, but it does not work, I used below code in header

<div class="container">
    <div class="row">
        <div class="col-lg-6">
            <?php
            Better_Mag::generator()->get_main_slider();
            ?>
        </div>
        <div class="col-lg-6">
            hello world
        </div>
    </div>
</div>

Upvotes: 1

Views: 58

Answers (1)

Khetesh kumawat
Khetesh kumawat

Reputation: 711

Change your code like this

<div class="container">
<div class="row">
<div class="col-lg-6">
hello world
</div>
<div class="col-lg-6">
<?php
              Better_Mag::generator()->get_main_slider();
?>
</div>

</div>
</div>

Upvotes: 1

Related Questions