/*!
Theme Name: OnLand
Theme URI: https://demo.themedraft.net/wp/onland/
Author: ThemeDraft
Author URI: https://themedraft.net
Description: OnLand is a Gardening & Landscaping WordPress theme
Version: 1.1.1
Tested up to: 6.7
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onland
Tested up to: 5.9
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

.td-recent-post-meta-read-more {
    display: unset !important;   /* "display" doesn't behave well with unset */
    align-items: unset !important;
}
.td-recent-post-read-more {
    flex: 1;
    text-align: left !important;
}

.td-gallery-item .td-gallery-url {
  display: none !important;
}

add_action('wp_nav_menu_items', 'add_call_now_button_mobile', 10, 2);
function add_call_now_button_mobile($items, $args) {
    if( $args->theme_location == 'primary' ) { 
        $items .= '<li class="menu-item call-now-btn">
                      <a href="tel:+923001234567">Call Now</a>
                   </li>';
    }
    return $items;
}

