// BEGIN ENQUEUE PARENT ACTION // AUTO GENERATED - Do not modify or remove comment markers above or below: if ( !function_exists( 'chld_thm_cfg_locale_css' ) ): function chld_thm_cfg_locale_css( $uri ){ if ( empty( $uri ) && is_rtl() && file_exists( get_template_directory() . '/rtl.css' ) ) $uri = get_template_directory_uri() . '/rtl.css'; return $uri; } endif; add_filter( 'locale_stylesheet_uri', 'chld_thm_cfg_locale_css' ); if ( !function_exists( 'chld_thm_cfg_parent_css' ) ): function chld_thm_cfg_parent_css() { wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( 'font-awesome-v5','bootstrap','sidr','magnific-popup','sliderpro' ) ); wp_enqueue_script('custom-script', get_stylesheet_directory_uri() . '/custom-script.js', array('jquery')); } endif; add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css', 10 ); // END ENQUEUE PARENT ACTION add_action( 'admin_enqueue_scripts', 'my_cfg_admin_enqueue' ); function my_cfg_admin_enqueue(){ wp_enqueue_script('custom-script', get_stylesheet_directory_uri() . '/custom-script.js', array('jquery')); wp_enqueue_style('style-cfg-child', get_stylesheet_uri(), array(), "4.2"); } add_action( 'after_setup_theme', 'remove_plugin_image_sizes', 999 ); function remove_plugin_image_sizes(){ remove_image_size( '2048x2048' ); remove_image_size( '1536x1536' ); remove_image_size( 'large' ); } function action_dynamic_sidebar_after( $array ) { if($array == "home-content-widgets") { echo the_content(); } }; add_action( 'dynamic_sidebar_after', 'action_dynamic_sidebar_after', 10, 1 ); add_action( 'trashed_post', 'mtp_delete_attached_thumbnail_for_trashed_product', 20, 1 ); function mtp_delete_attached_thumbnail_for_trashed_product( $post_id ) { // gets ID of post being trashed $post_type = get_post_type( $post_id ); // does not run on other post types if ( $post_type != 'post' ) { return true; } // get ID of featured image $post_thumbnail_id = get_post_thumbnail_id( $post_id ); // delete featured image wp_delete_attachment( $post_thumbnail_id, true ); } /** * CoverNews functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package CoverNews */ if (!function_exists('covernews_setup')): /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ /** * */ /** * */ function covernews_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on CoverNews, use a find and replace * to change 'covernews' to the name of your theme in all the template files. */ load_theme_textdomain('covernews', get_template_directory().'/languages'); // Add default posts and comments RSS feed links to head. add_theme_support('automatic-feed-links'); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support('post-thumbnails'); add_image_size('covernews-slider-full', 1115, 715, true); // width, height, crop add_image_size('covernews-slider-center', 800, 500, true); // width, height, crop add_image_size('covernews-featured', 1024, 0, false ); // width, height, crop add_image_size('covernews-medium', 540, 340, true); // width, height, crop add_image_size('covernews-medium-square', 400, 250, true); // width, height, crop /* * Enable support for Post Formats on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'image', 'video', 'gallery' ) ); // This theme uses wp_nav_menu() in one location. register_nav_menus(array( 'aft-primary-nav' => esc_html__('Primary Menu', 'covernews'), 'aft-top-nav' => esc_html__('Top Menu', 'covernews'), 'aft-social-nav' => esc_html__('Social Menu', 'covernews'), 'aft-footer-nav' => esc_html__('Footer Menu', 'covernews'), )); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support('html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', )); // Set up the WordPress core custom background feature. add_theme_support('custom-background', apply_filters('covernews_custom_background_args', array( 'default-color' => 'f5f5f5', 'default-image' => '', ))); // Add theme support for selective refresh for widgets. add_theme_support('customize-selective-refresh-widgets'); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support('custom-logo', array( 'flex-width' => true, 'flex-height' => true, )); /*theme updater*/ if (is_admin()) { require (get_template_directory().'/inc/updater/theme-updater.php'); } /* * Add theme support for gutenberg block */ add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); } endif; add_action('after_setup_theme', 'covernews_setup'); /** * function for google fonts */ if (!function_exists('covernews_fonts_url')): /** * Return fonts URL. * * @since 1.0.0 * @return string Fonts URL. */ function covernews_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; $covernews_primary_font = covernews_get_option('primary_font'); $covernews_secondary_font = covernews_get_option('secondary_font'); $covernews_fonts = array(); $covernews_fonts[] = $covernews_primary_font; $covernews_fonts[] = $covernews_secondary_font; $i = 0; for ($i = 0; $i < count($covernews_fonts); $i++) { if ('off' !== sprintf(_x('on', '%s font: on or off', 'covernews'), $covernews_fonts[$i])) { $fonts[] = $covernews_fonts[$i]; } } if ($fonts) { $fonts_url = add_query_arg(array( 'family' => urldecode(implode('|', $fonts)), 'subset' => urldecode($subsets), ), 'https://fonts.googleapis.com/css'); } return $fonts_url; } endif; /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function covernews_content_width() { $GLOBALS['content_width'] = apply_filters('covernews_content_width', 640); } add_action('after_setup_theme', 'covernews_content_width', 0); /** * Load Init for Hook files. */ require get_template_directory() . '/inc/custom-style.php'; /** * Enqueue scripts and styles. */ function covernews_scripts() { $min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG?'':'.min'; wp_enqueue_style('font-awesome-v5', get_template_directory_uri().'/assets/font-awesome-v5/css/fontawesome-all'.$min.'.css'); wp_enqueue_style('bootstrap', get_template_directory_uri().'/assets/bootstrap/css/bootstrap'.$min.'.css'); wp_enqueue_style('slick', get_template_directory_uri().'/assets/slick/css/slick.css'); wp_enqueue_style('sidr', get_template_directory_uri().'/assets/sidr/css/jquery.sidr.dark.css'); wp_enqueue_style('magnific-popup', get_template_directory_uri().'/assets/magnific-popup/magnific-popup.css'); wp_enqueue_style('sliderpro', get_template_directory_uri().'/assets/slider-pro/css/slider-pro'.$min.'.css'); $fonts_url = covernews_fonts_url(); if (!empty($fonts_url)) { wp_enqueue_style('covernews-google-fonts', $fonts_url, array(), null); } if ( class_exists( 'WooCommerce' ) ) { wp_enqueue_style('covernews-woocommerce-style', get_template_directory_uri() . '/assets/woocommerce.css'); } wp_enqueue_style('covernews-style', get_stylesheet_uri(), array(), wp_get_theme()->get( 'Version' )); wp_add_inline_style( 'covernews-style', covernews_custom_style() ); wp_enqueue_script('covernews-navigation', get_template_directory_uri().'/js/navigation.js', array(), '20151215', true); wp_enqueue_script('covernews-skip-link-focus-fix', get_template_directory_uri().'/js/skip-link-focus-fix.js', array(), '20151215', true); wp_enqueue_script('slick', get_template_directory_uri().'/assets/slick/js/slick'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('bootstrap', get_template_directory_uri().'/assets/bootstrap/js/bootstrap'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('sidr', get_template_directory_uri().'/assets/sidr/js/jquery.sidr'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('magnific-popup', get_template_directory_uri().'/assets/magnific-popup/jquery.magnific-popup'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('sliderpro', get_template_directory_uri().'/assets/slider-pro/js/jquery.sliderPro'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('matchheight', get_template_directory_uri().'/assets/jquery-match-height/jquery.matchHeight'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('marquee', get_template_directory_uri() . '/assets/marquee/jquery.marquee.js', array('jquery'), '', true); // wp_enqueue_script('sticky-sidebar', get_template_directory_uri() . '/assets/theiaStickySidebar/theia-sticky-sidebar.min.js', array('jquery'), '', true); wp_enqueue_script('covernews-script', get_template_directory_uri().'/assets/script.js', array('jquery'), '', 1); $disable_sticky_header_option = covernews_get_option('disable_sticky_header_option'); if($disable_sticky_header_option == false ){ wp_enqueue_script('covernews-fixed-header-script', get_template_directory_uri().'/assets/fixed-header-script.js', array('jquery'), '', 1); } if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'covernews_scripts'); /** * Enqueue admin scripts and styles. * * @since CoverNews 1.0.0 */ function covernews__admin_scripts($hook){ if ('widgets.php' === $hook) { wp_enqueue_media(); wp_enqueue_script('covernews-widgets', get_template_directory_uri() . '/assets/widgets.js', array('jquery'), '1.0.0', true); } } add_action('admin_enqueue_scripts', 'covernews__admin_scripts'); /** * Functions which adds instagram posts in footer. */ //require get_template_directory().'/inc/template-instagram.php'; /** * Custom template tags for this theme. */ require get_template_directory().'/inc/template-tags.php'; /** * Custom template tags for this theme. */ require get_template_directory().'/inc/template-images.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory().'/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory().'/inc/customizer/customizer.php'; /** * Implement the Custom Header feature. */ require get_template_directory().'/inc/custom-header.php'; /** * Customizer additions. */ require get_template_directory().'/inc/init.php'; /** * Customizer additions. */ require get_template_directory().'/inc/ocdi.php'; /** * Load Jetpack compatibility file. */ if (defined('JETPACK__VERSION')) { require get_template_directory().'/inc/jetpack.php'; } /** * Load WooCommerce compatibility file. */ if ( class_exists( 'WooCommerce' ) ) { require get_template_directory() . '/inc/woocommerce.php'; } /** * Descriptions on Header Menu * @author AF themes * @param string $item_output, HTML outputp for the menu item * @param object $item, menu item object * @param int $depth, depth in menu structure * @param object $args, arguments passed to wp_nav_menu() * @return string $item_output */ function covernews_header_menu_desc( $item_output, $item, $depth, $args ) { if( 'aft-primary-nav' == $args->theme_location && $item->description ) $item_output = str_replace( '</a>', '<span class="menu-description">' . $item->description . '</span></a>', $item_output ); return $item_output; } add_filter( 'walker_nav_menu_start_el', 'covernews_header_menu_desc', 10, 4 ); <!doctype html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <script>var et_site_url='https://cryptothunker.com';var et_post_id='0';function et_core_page_resource_fallback(a,b){"undefined"===typeof b&&(b=a.sheet.cssRules&&0===a.sheet.cssRules.length);b&&(a.onerror=null,a.onload=null,a.href?a.href=et_site_url+"/?et_core_page_resource="+a.id+et_post_id:a.src&&(a.src=et_site_url+"/?et_core_page_resource="+a.id+et_post_id))} </script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <!-- This site is optimized with the Yoast SEO plugin v17.9 - https://yoast.com/wordpress/plugins/seo/ --> <link rel="canonical" href="https://cryptothunker.com/category/bitcoin-news/page/4/" /> <link rel="prev" href="https://cryptothunker.com/category/bitcoin-news/page/3/" /> <link rel="next" href="https://cryptothunker.com/category/bitcoin-news/page/5/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Bitcoin News Archives - Page 4 of 71 - CryptoThunker" /> <meta property="og:url" content="https://cryptothunker.com/category/bitcoin-news/" /> <meta property="og:site_name" content="CryptoThunker" /> <meta name="twitter:card" content="summary_large_image" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://cryptothunker.com/#website","url":"https://cryptothunker.com/","name":"NewCryptoGold","description":"Latest Bitcoin & Cryptocurrency News","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://cryptothunker.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"CollectionPage","@id":"https://cryptothunker.com/category/bitcoin-news/page/4/#webpage","url":"https://cryptothunker.com/category/bitcoin-news/page/4/","name":"Bitcoin News Archives - Page 4 of 71 - CryptoThunker","isPartOf":{"@id":"https://cryptothunker.com/#website"},"breadcrumb":{"@id":"https://cryptothunker.com/category/bitcoin-news/page/4/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://cryptothunker.com/category/bitcoin-news/page/4/"]}]},{"@type":"BreadcrumbList","@id":"https://cryptothunker.com/category/bitcoin-news/page/4/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://cryptothunker.com/"},{"@type":"ListItem","position":2,"name":"Bitcoin News"}]}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="CryptoThunker » Bitcoin News Category Feed" href="https://cryptothunker.com/category/bitcoin-news/feed/" /> <link rel='stylesheet' id='blockspare-frontend-block-style-css-css' href='https://cryptothunker.com/wp-content/plugins/blockspare/dist/blocks.style.build.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='latest-posts-block-fontawesome-front-css' href='https://cryptothunker.com/wp-content/plugins/latest-posts-block-lite/src/assets/fontawesome/css/all.css?ver=1629651155' type='text/css' media='all' /> <link rel='stylesheet' id='latest-posts-block-frontend-block-style-css-css' href='https://cryptothunker.com/wp-content/plugins/latest-posts-block-lite/dist/blocks.style.build.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='https://cryptothunker.com/wp-includes/css/dist/block-library/style.min.css?ver=6.4.3' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='preload' as='style' onload='this.onload=null;this.rel="stylesheet"' id='cmc-bootstrap' href='https://cryptothunker.com/wp-content/plugins/coin-market-cap/assets/css/libs/bootstrap.min.css?ver=4.4' type='text/css' media='all' /><link rel='stylesheet' as='style' onload='this.onload=null;this.rel="stylesheet"' id='cmc-bootstrap' href='https://cryptothunker.com/wp-content/plugins/coin-market-cap/assets/css/libs/bootstrap.min.css?ver=4.4' type='text/css' media='all' /><link rel='stylesheet' id='cmc-custom-css' href='https://cryptothunker.com/wp-content/plugins/coin-market-cap/assets/css/cmc-custom.css?ver=4.4' type='text/css' media='all' /> <link rel='preload' as='style' onload='this.onload=null;this.rel="stylesheet"' id='cmc-icons' href='https://cryptothunker.com/wp-content/plugins/coin-market-cap/assets/css/cmc-icons.min.css?ver=4.4' type='text/css' media='all' /><link rel='stylesheet' as='style' onload='this.onload=null;this.rel="stylesheet"' id='cmc-icons' href='https://cryptothunker.com/wp-content/plugins/coin-market-cap/assets/css/cmc-icons.min.css?ver=4.4' type='text/css' media='all' /><link rel='stylesheet' id='contact-form-7-css' href='https://cryptothunker.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='blockspare-blocks-fontawesome-front-css' href='https://cryptothunker.com/wp-content/plugins/blockspare/src/assets/fontawesome/css/all.css?ver=1629651149' type='text/css' media='all' /> <link rel='stylesheet' id='slick-css' href='https://cryptothunker.com/wp-content/plugins/blockspare/src/assets/slick/css/slick.css?ver=6.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='et_monarch-css-css' href='https://cryptothunker.com/wp-content/plugins/monarch/css/style.css?ver=1.4.14' type='text/css' media='all' /> <link rel='stylesheet' id='et-gf-open-sans-css' href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' type='text/css' media='all' /> <script type="text/javascript" src="https://cryptothunker.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://cryptothunker.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type='text/javascript' src='https://cryptothunker.com/?wpstealthadsjs=1&ver=6.4.3' async></script> <script type="text/javascript" src="https://cryptothunker.com/wp-content/plugins/blockspare/src/assets/js/countup/waypoints.min.js?ver=6.4.3" id="waypoint-js"></script> <script type="text/javascript" src="https://cryptothunker.com/wp-content/plugins/blockspare/src/assets/js/countup/jquery.counterup.min.js?ver=1" id="countup-js"></script> <link rel="https://api.w.org/" href="https://cryptothunker.com/wp-json/" /><link rel="alternate" type="application/json" href="https://cryptothunker.com/wp-json/wp/v2/categories/19" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cryptothunker.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.4.3" /> <style type="text/css" id="et-social-custom-css"> @media (max-width: 768px) { .et_monarch .et_social_left .et_social_network_label { margin-left: 35px; padding: 4px 8px 10px 10px; } .et_monarch .et_social_networks .et_social_icon, .et_monarch .et_social_networks .et_social_icon:before, .et_monarch .et_social_networks .et_social_icon:after { width: 35px; height: 35px; line-height: 35px; } .et_monarch .et_social_inline_top { margin-bottom: 0px; } } </style><link rel="preload" href="https://cryptothunker.com/wp-content/plugins/monarch/core/admin/fonts/modules.ttf" as="font" crossorigin="anonymous"><link rel="icon" href="https://cryptothunker.com/wp-content/uploads/2021/05/Cryptologo.png" sizes="32x32" /> <link rel="icon" href="https://cryptothunker.com/wp-content/uploads/2021/05/Cryptologo.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://cryptothunker.com/wp-content/uploads/2021/05/Cryptologo.png" /> <meta name="msapplication-TileImage" content="https://cryptothunker.com/wp-content/uploads/2021/05/Cryptologo.png" /> <style type="text/css" id="wp-custom-css"> /*GLOBAL*/ html, body { max-width: 100%; overflow-x: hidden; } body { background: white; } #masthead { background: white; } body .ccpw-footer-ticker-fixedbar { top: unset!important; } .amcharts-balloon-div div { min-width: 100px!important; } .amcharts-balloon-div.amcharts-balloon-div-g1 div { min-width: 185px!important; } .masthead-banner { min-height: 80px; display: flex; align-items: center; } .banner-promotions-wrapper { margin: 5px 0; } .textwidget iframe { max-width: 300px; display: block; margin: 0 auto; } .custom-logo { max-height: 75px; width: auto; -webkit-backface-visibility: hidden; -webkit-transform: translateZ(0) scale(1, 1); } .cmc-tabsBtn[data-id="#cmc-container-twitter-feeds"] { display: none; } .ccpw-widget { font-family: Helvetica,Arial,sans-serif; } .ccpw-widget .live_c { font-weight: 600; } .ccpw-widget .cmc_links .name { font-size: 12px; } .ccpw-widget .ccpw_table span.symbol { font-size: 12px; } .ccpw-widget thead th { font-weight: 400; } /*GLOBAL*/ /*CONTAINER MEDIA 992, 768, 1200, 1600*/ @media (min-width: 1200px) { #primary { width: 72%; } #secondary { width: 28%; } /* .entry-title { font-size: 40px!important; } .author-links span{ font-size: 16px!important; } */ .trending-story .slick-slide a{ font-size: 13px!important; } .trending-story .slick-slide figcaption{ padding: 0 5px 0 15px } .main-slider .slick-slide h3{ font-size: 32px!important; line-height: 1.2 } .af-main-banner-editors-picks h3 a { font-size: 16px!important; } .covernews_Posts_Grid .spotlight-post figcaption{ width: 65%; padding: 10px 15px; } .covernews_Posts_Grid .spotlight-post figcaption h3 a { font-size: 13px!important; } } @media (min-width: 1600px) { #primary { width: 72%; } #secondary { width: 28%; } .container { max-width: 1240px!important; } /* .entry-title { font-size: 40px!important; } .author-links span{ font-size: 16px!important; } */ .trending-story .slick-slide a{ font-size: 13px!important; } .trending-story .slick-slide figcaption{ padding: 0 5px 0 15px } .main-slider .slick-slide h3{ font-size: 32px!important; line-height: 1.2 } .af-main-banner-editors-picks h3 a { font-size: 16px!important; } .covernews_Posts_Grid .spotlight-post figcaption{ width: 64%; padding: 10px 15px; } .covernews_Posts_Grid .spotlight-post figcaption h3 a { font-size: 15px!important; } } /*CONTAINER*/ /*FONTS*/ /*FONTS*/ /* VIDEO POST FORMAT STYLE*/ .af-single-article.category-video .aft-post-thumbnail-wrapper{ display:none; } .entry-content iframe { width: 1000px!important; } /* VIDEO POST FORMAT STYLE*/ /* POST */ .entry-content { padding: 20px; } /* POST */ /* HEADER*/ #site-navigation { background: #1b1b1b; } .sub-menu li a:hover { text-decoration-color: #ff4000; color: #FFC100; } /* HEADER*/ /*SIDEBAR MARKETCAP LINK*/ .market-list-link { font-size: 16px; font-weight: 600 } /*SIDEBAR MARKETCAP LINK*/ /*SIDEBAR TOP CURRENCY WIDGET*/ #ccpw-list-widget-687 .ccpw_table { font-size: 16px!important; } /*SIDEBAR TOP CURRENCY WIDGET*/ /* custom styles */ body { padding-bottom: 30px; } .primary-footer { padding-top: 25px; } header.site-header .masthead-banner { padding: 0; } header.site-header .masthead-banner .row { display: flex; align-items: center; } .data-bg-categorised { height: 175px; } .single-post h1, .page h1 { font-size: 32px!important; } .single-post .author-links { font-size: 14px!important; } .posts-author { display: none!important; } .hentry .entry-header-details { padding: 15px 0; } .site-info { font-size: 15px; padding: 10px 0; } .widget .ccpw_table .ccpw_icon.ccpw_coin_logo { height: 24px!important; width: 24px!important; } .widget .ccpw_table .ccpw_coin_info { width: calc(100% - 30px)!important; } @media (min-width: 768px) { .af-main-banner-latest-posts .col-sm-15.latest-posts-grid { width: 25%; } } @media (min-width: 768px) and (max-width: 1200px) { .home .for-main-row .main-story-wrapper { width: 66%; } .home .for-main-row .categorized-story { width: 34%; } } @media (max-width: 1200px) { .home .trending-story { display: none; } } @media (max-width: 991px) { header.site-header .masthead-banner .col-md-8 { display: none } header.site-header .custom-logo { max-height: 70px; width: auto; max-width: 100%; padding: 5px 0; } .single-post h1, .page h1 { font-size: 26px!important; } .primary-footer { padding-bottom: 15px; } } @media (max-width: 768px) { #ai_widget-7, #ai_widget-10, #covernews_single_col_categorised_posts-3, #covernews_double_col_categorised_posts-5, .home .af-main-banner-latest-posts { display: none!important; } #main > a { display: none!important; } .entry-content { padding: 15px 5px; } .cmc_links { display: flex; justify-content: flex-start; align-items: center; } .cmc_links .ccpw_icon { width: auto; } .cmc_links .name { width: auto!important; } .cmc_links .symbol { margin-left: 10px; } body { padding-bottom: 0; } } @media (max-width: 575px) { .for-main-row h3 { font-size: 18px!important; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 5; /* number of lines to show */ -webkit-box-orient: vertical; } } /* Crypto List */ .cmc_search { width: auto!important; } /* Crypto List */ /* Disable Sidebar on some pages */ .page-id-294 #ai_widget-6, .page-id-294 #covernews_single_col_categorised_posts-2, .page-id-294 #wpstealthads_widget-2 { display: none!important; } .page-id-166 #wpstealthads_widget-2 { display: none!important; } .page-id-684 #covernews_single_col_categorised_posts-2, .page-id-684 #wpstealthads_widget-2{ display: none; } .page-id-1667 #covernews_single_col_categorised_posts-2 { display: none; } /* Disable Sidebar on some pages */ /* Sidebar 10 coins widget */ .ccpw_table.style-4.table>tbody>tr>td:nth-of-type(1), .ccpw_table.style-4.table>thead>tr>th:nth-of-type(1) { width: auto!important; } #wid-687 { font-size: 12px!important; } .ccpw_coin_cont, .live_c { padding: 2px!important; } /* Sidebar 10 coins widget */ /* Ticket style */ .tickercontainer li.price-plus .live-pricing { background-color: #4fc764!important; } /* Ticket style */ </style> </head> <body class="archive paged category category-bitcoin-news category-19 wp-custom-logo paged-4 category-paged-4 et_monarch">