Content Marketing Mastery: Your Path to Audience Connection
Adipiscing diam donec adipiscing tristique risus. Fames ac turpis egestas sed tempus urna et. Fringilla ut morbi tincidunt augue interdum velit euismod. Viverra vitae congue eu consequat ac felis. Nisl nunc mi ipsum faucibus vitae aliquet nec. Pharetra magna ac placerat vestibulum lectus mauris ultrices eros. Imperdiet nulla malesuada pellentesque elit eget gravida cum sociis. In hac habitasse platea dictumst quisque sagittis. Ornare arcu dui vivamus arcu felis bibendum ut tristique. Etiam sit amet nisl purus. Accumsan sit amet nulla facilisi morbi tempus. Ut placerat orci nulla pellentesque.
List style with box shadow style icon
Let’s create the most amazing iconbox and give it a perfect look with box shadow style.
jQuery(document).ready(function($) {
// Ensure that clicking on the main Services link takes you to the Services page
$('.menu-item-has-children > a').on('click', function(e) {
var href = $(this).attr('href');
var isDropdown = $(this).hasClass('dropdown-toggle');
// If it’s not a dropdown or if we’re clicking the parent link itself, navigate to the page
if (!isDropdown || href === '#') {
window.location.href = href;
}
// If it's a dropdown, let it open as usual
else {
e.preventDefault(); // Prevents the default dropdown behavior to allow the page to load
window.location.href = href;
}
});
});