Skip to content

Commit

Permalink
Merge pull request #547 from equalizedigital/stage
Browse files Browse the repository at this point in the history
Stage
  • Loading branch information
tronsymphony authored Oct 24, 2023
2 parents 162f14f + 04f0ec0 commit 53aa91d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion assets/js/menu-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions assets/js/src/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
});
});

if ($(window).innerWidth() >= 768) {
if ($(window).innerWidth() >= 1070) {
$('#menu_search_btn').on('click', function() {
var $popup = $('.search-popup');
if ($popup.length) {
Expand Down Expand Up @@ -104,7 +104,7 @@
});


if ($(window).innerWidth() <= 768) {
if ($(window).innerWidth() <= 1070) {
var $mainLinks = $(".menu-item-main-link");
var $sideHeader = $('.site-header');

Expand Down Expand Up @@ -246,11 +246,11 @@
}
}

if ($(window).width() > 768) {
if ($(window).width() > 1070) {
$('.zight-tab-content-nav .ul').css('display', 'flex');
}

if ($(window).width() <= 768) {
if ($(window).width() <= 1070) {
mobileToggle.next().hide();
}
});
Expand Down
5 changes: 1 addition & 4 deletions template-parts/blocks/tabbed-content/tabbed-content.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,7 @@ class="tabbed-content__content__pane
<img src="<?php echo $row['image']['url']; ?>" alt="">
<?php endif; ?>
</figure>
<div class="image_name">
<div class="title"><?php echo $row['name']; ?></div>
<div class="occupation"><?php echo $row['occupation']; ?></div>
</div>

<div class="image_info">
<?php
$ctas = $row['ctas'];
Expand Down

0 comments on commit 53aa91d

Please sign in to comment.