Hi @mehmettas,
Follow these steps to add a new position according to your idea.
- Open the top-bar.php in the "ja_healthcare/tpls/blocks/" folder and add the PHP code below above the top-bar section.
<?php if ($this->countModules('promo-bar')) : ?>
<div class="t3-promo-bar">
<div class="container">
<jdoc:include type="modules" name="<?php $this->_p('promo-bar') ?>" style="raw"/>
</div>
</div>
<?php endif ?>
<?php if ($this->countModules('top-left') || $this->countModules('top-right')) : ?>
...
- Open the custom.css file in the "ja_healthcare/local/css/" folder and add below CSS rule to that file.
.t3-promo-bar {
border-bottom: 1px solid #e6eaf0;
padding: 8px 0;
}
.t3-promo-bar p {
margin: 0;
}
- Create new module and publish to the promo-bar position.