Update:
I found the following lines in the layouts/theme.php file (around line 99):
<!-- Top Module A B C D -->
<?php if ($this->count('top-a + top-b + top-c + top-d')) : ?>
<?php if ($this->count('top-a')) : ?>
<section class="<?php echo $grid_classes; ?>" data-uk-grid-match="{target:'> div > .uk-panel'}" data-uk-grid-margin><?php echo $this->render('top-a', array('layout'=>$this->get('grid.top-a.layout'))); ?></section>
<hr class="style-one">
<?php endif; ?>
<?php if ($this->count('top-b')) : ?>
So it looks like I can comment out the line with <hr class="style-one"> and the horizontal rule goes away.
My concern is if I do this, and the template is updated down the road, I assume I would loose the change and have to find it again.
Is there a way to make this change which would not be impacted down the road, similar to the custom.css files?
Please Log in or Create an account to join the conversation.