Guest User

Untitled

a guest
Jul 16th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <div class="row middle">
  2. <div class="col-lg-6 leftFifty">
  3. <div class="leftContent" style="background-color: white; height: 100%; ">
  4. Content
  5. </div>
  6. </div>
  7. <div class="col-lg-6 rightFifty">
  8. <div class="rightContent" style="background-color: white; height: 100%; ">
  9. Content
  10. </div>
  11. </div>
  12. </div>
  13.  
  14. <div class="row middle">
  15. <?php foreach($panelResult as $PR): ?>
  16. <div class="col-lg-6 leftFifty">
  17. <?php if($PR['panel_type_id'] == 2){ ?>
  18. <div class="leftContent" style="background-color: white; height: 100%; ">
  19. <?php echo $PR['content']?>
  20. </div>
  21. </div>
  22. <div class="col-lg-6 rightFifty">
  23. <?php } elseif($PR['panel_type_id'] == 3){?>
  24. <div class="rightContent" style="background-color: white; height: 100%; ">
  25. <?php echo $PR['content'] ?>
  26. </div>
  27. </div>
  28. <?php } ?>
  29. <?php endforeach ?>
  30. </div>
  31.  
  32. <!--This div is not showing-->
  33. <div class="row bottom">
  34. <div class="col-lg-12">
  35. <div class="marquee"><h2>This is a test</h2></div>
  36. </div>
  37. </div>
Add Comment
Please, Sign In to add comment