Commit 768ae8c4 by rajshah

done for v2 icon box

parent 4c72fe35
...@@ -7,9 +7,10 @@ if (isset($ibs) && is_array($ibs) && !empty($ibs)): ...@@ -7,9 +7,10 @@ if (isset($ibs) && is_array($ibs) && !empty($ibs)):
$ibs_title = $ibs['ibs_title'] ?: ''; $ibs_title = $ibs['ibs_title'] ?: '';
$ibs_desc = $ibs['ibs_desc'] ?: ''; $ibs_desc = $ibs['ibs_desc'] ?: '';
$ibs_items = $ibs['ibs_items'] ?: []; $ibs_items = $ibs['ibs_items'] ?: [];
$ibs_v = $ibs['ibs_v'];
if (isset($ibs_items) && is_array($ibs_items) && !empty($ibs_items)): if (isset($ibs_items) && is_array($ibs_items) && !empty($ibs_items)):
?> ?>
<section class="SERVICE-LISTING pt-80"> <section class="<?php echo ($ibs_v) ? ' pt-80 ' : 'AUDIT-TOOL-BOX py-80 mt-80'; ?> SERVICE-LISTING">
<div class="container"> <div class="container">
<div class="top-title section-title"> <div class="top-title section-title">
<?php if (!empty($ibs_title)): ?> <?php if (!empty($ibs_title)): ?>
...@@ -25,7 +26,7 @@ if (isset($ibs) && is_array($ibs) && !empty($ibs)): ...@@ -25,7 +26,7 @@ if (isset($ibs) && is_array($ibs) && !empty($ibs)):
$ibsi_title = $ibsi['ibsi_title'] ?: ''; $ibsi_title = $ibsi['ibsi_title'] ?: '';
$ibsi_desc = $ibsi['ibsi_desc'] ?: ''; $ibsi_desc = $ibsi['ibsi_desc'] ?: '';
?> ?>
<div class="col-md-6 col-xl-3"> <div class="col-md-6 col-xl-<?php echo ($ibs_v) ? '3' : '4'; ?>">
<div class="service-item"> <div class="service-item">
<?php if (!empty($ibsi_icon)): ?> <?php if (!empty($ibsi_icon)): ?>
<div class="si-icon"> <div class="si-icon">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment