/** * Chimney functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Chimney */ if ( ! defined( '_S_VERSION' ) ) { // Replace the version number of the theme on each release. define( '_S_VERSION', '1.0.0' ); } /** * 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 chimney_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Chimney, use a find and replace * to change 'chimney' to the name of your theme in all the template files. */ load_theme_textdomain( 'chimney', 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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary', 'chimney' ), ) ); /* * 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', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'chimney_custom_background_args', array( 'default-color' => 'ffffff', '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( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } add_action( 'after_setup_theme', 'chimney_setup' ); /** * 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 chimney_content_width() { $GLOBALS['content_width'] = apply_filters( 'chimney_content_width', 640 ); } add_action( 'after_setup_theme', 'chimney_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function chimney_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'chimney' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'chimney' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'chimney_widgets_init' ); /** * Enqueue scripts and styles. */ function chimney_scripts() { wp_enqueue_style( 'chimney-style', get_stylesheet_uri(), array(), _S_VERSION ); wp_style_add_data( 'chimney-style', 'rtl', 'replace' ); wp_enqueue_script( 'chimney-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'chimney_scripts' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.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.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'; } require get_template_directory() . '/inc/MY_constants.php'; require get_template_directory() . '/inc/MY_functions.php'; function wpb_custom_new_menu() { register_nav_menu('my-custom-menu',__( 'My Custom Menu' )); } add_action( 'init', 'wpb_custom_new_menu' ); //Inner Banner function render_inner_banner($args){ ob_start(); $inner_banner_img = get_field('inner_banner_img'); $inner_banner_title = get_field('inner_banner_title'); echo ' <section class="inner-banner-sec"> <img src="'.$inner_banner_img.'" alt="" class="innner-banner-1" /> <div class="inner-banner-box"> <div class="row"> <div class="col-lg-12"> <div class="inner-banner-text"> <h2>'.$inner_banner_title.'</h2> </div> </div> </div> </div> </section> '; wp_reset_postdata(); $output = ob_get_clean(); return $output; }; add_shortcode('render_inner_banner','render_inner_banner'); //render service function render_post($args) { ob_start(); $args = array( 'post_type' => 'servicess', // 'posts_per_page' =>-1, // 'order' => 'DESC', // 'category_name' => 'blog' ); $the_query = new WP_Query( $args ); $i = 1; if ( $the_query->have_posts() ) { echo ' <div class="row">'; while ( $the_query->have_posts() ) { $the_query->the_post(); echo ' <div class="col-lg-4 col-md-4"> <div class="service-box"> <div class="service-image"> <img src="'.get_image(get_THE_ID()).'" alt="" class="ser-1" /> </div> <div class="service-text"> <h3>'.get_the_title().'</h3> <p>'.get_the_excerpt().'</p> <a href="'.get_permalink().'" class="btn2"><i class="fa-solid fa-chevrons-right"></i></a> </div> </div> </div> '; $i++; } echo '</div>'; } wp_reset_postdata(); $output = ob_get_clean(); return $output; }; add_shortcode('render_post','render_post');<!doctype html> <html dir="ltr" lang="en" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <!-- Bootstrap CSS --> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/css/animate.css" rel="stylesheet"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/fontawesome5/css/all.min.css" rel="stylesheet"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/slick/slick-theme.css" rel="stylesheet" type="text/css"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/slick/slick.css" rel="stylesheet" type="text/css"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/css/slicknav.css" rel="stylesheet" type="text/css"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/css/fancybox.css" rel="stylesheet" type="text/css"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/css/bootstrap.css" rel="stylesheet"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/css/custom.css" rel="stylesheet"> <link href="https://www.allaboutchimneys.net/wp-content/themes/chimney/css/cms.css" rel="stylesheet"> <!-- All in One SEO 4.9.3 - aioseo.com --> <meta name="description" content="top european online casinos" /> <meta name="robots" content="max-image-preview:large" /> <link rel="canonical" href="https://www.allaboutchimneys.net/gallery/" /> <meta name="generator" content="All in One SEO (AIOSEO) 4.9.3" /> <meta property="og:locale" content="en_US" /> <meta property="og:site_name" content="Chimney -" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Gallery - Chimney" /> <meta property="og:description" content="top european online casinos" /> <meta property="og:url" content="https://www.allaboutchimneys.net/gallery/" /> <meta property="article:published_time" content="2023-10-09T12:45:53+00:00" /> <meta property="article:modified_time" content="2026-02-03T15:26:20+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Gallery - Chimney" /> <meta name="twitter:description" content="top european online casinos" /> <script type="application/ld+json" class="aioseo-schema"> {"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.allaboutchimneys.net\/gallery\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.allaboutchimneys.net#listItem","position":1,"name":"Home","item":"https:\/\/www.allaboutchimneys.net","nextItem":{"@type":"ListItem","@id":"https:\/\/www.allaboutchimneys.net\/gallery\/#listItem","name":"Gallery"}},{"@type":"ListItem","@id":"https:\/\/www.allaboutchimneys.net\/gallery\/#listItem","position":2,"name":"Gallery","previousItem":{"@type":"ListItem","@id":"https:\/\/www.allaboutchimneys.net#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/www.allaboutchimneys.net\/#organization","name":"Chimney","url":"https:\/\/www.allaboutchimneys.net\/"},{"@type":"WebPage","@id":"https:\/\/www.allaboutchimneys.net\/gallery\/#webpage","url":"https:\/\/www.allaboutchimneys.net\/gallery\/","name":"Gallery - Chimney","description":"top european online casinos","inLanguage":"en","isPartOf":{"@id":"https:\/\/www.allaboutchimneys.net\/#website"},"breadcrumb":{"@id":"https:\/\/www.allaboutchimneys.net\/gallery\/#breadcrumblist"},"datePublished":"2023-10-09T12:45:53+00:00","dateModified":"2026-02-03T15:26:20+00:00"},{"@type":"WebSite","@id":"https:\/\/www.allaboutchimneys.net\/#website","url":"https:\/\/www.allaboutchimneys.net\/","name":"Chimney","inLanguage":"en","publisher":{"@id":"https:\/\/www.allaboutchimneys.net\/#organization"}}]} </script> <!-- All in One SEO --> <!-- This site is optimized with the Yoast SEO plugin v26.9 - https://yoast.com/product/yoast-seo-wordpress/ --> <link rel="canonical" href="https://www.allaboutchimneys.net/gallery/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Gallery - Chimney" /> <meta property="og:description" content="top european online casinos" /> <meta property="og:url" content="https://www.allaboutchimneys.net/gallery/" /> <meta property="og:site_name" content="Chimney" /> <meta property="article:modified_time" content="2026-02-03T15:26:20+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:label1" content="Est. reading time" /> <meta name="twitter:data1" content="1 minute" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.allaboutchimneys.net/gallery/","url":"https://www.allaboutchimneys.net/gallery/","name":"Gallery - Chimney","isPartOf":{"@id":"https://www.allaboutchimneys.net/#website"},"datePublished":"2023-10-09T12:45:53+00:00","dateModified":"2026-02-03T15:26:20+00:00","breadcrumb":{"@id":"https://www.allaboutchimneys.net/gallery/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https://www.allaboutchimneys.net/gallery/"]}]},{"@type":"BreadcrumbList","@id":"https://www.allaboutchimneys.net/gallery/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.allaboutchimneys.net/"},{"@type":"ListItem","position":2,"name":"Gallery"}]},{"@type":"WebSite","@id":"https://www.allaboutchimneys.net/#website","url":"https://www.allaboutchimneys.net/","name":"Chimney","description":"","publisher":{"@id":"https://www.allaboutchimneys.net/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.allaboutchimneys.net/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https://www.allaboutchimneys.net/#organization","name":"Chimney","url":"https://www.allaboutchimneys.net/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https://www.allaboutchimneys.net/#/schema/logo/image/","url":"https://www.allaboutchimneys.net/wp-content/uploads/2023/10/logo.png","contentUrl":"https://www.allaboutchimneys.net/wp-content/uploads/2023/10/logo.png","width":600,"height":422,"caption":"Chimney"},"image":{"@id":"https://www.allaboutchimneys.net/#/schema/logo/image/"}}]}</script> <!-- / Yoast SEO plugin. --> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.allaboutchimneys.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.allaboutchimneys.net%2Fgallery%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.allaboutchimneys.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.allaboutchimneys.net%2Fgallery%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <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} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--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,rgb(6,147,227) 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,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 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 rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){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;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='contact-form-7-css' href='https://www.allaboutchimneys.net/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.4' type='text/css' media='all' /> <link rel='stylesheet' id='js_composer_front-css' href='https://www.allaboutchimneys.net/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=6.6.0' type='text/css' media='all' /> <link rel="https://api.w.org/" href="https://www.allaboutchimneys.net/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.allaboutchimneys.net/wp-json/wp/v2/pages/102" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.allaboutchimneys.net/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.1" /> <link rel='shortlink' href='https://www.allaboutchimneys.net/?p=102' /> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=AW-11323946985"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-11323946985'); </script> <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <link rel="icon" href="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/cropped-logo-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/cropped-logo-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/cropped-logo-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/cropped-logo-270x270.png" /> <style type="text/css" id="wp-custom-css"> .ddgd { left: 0px !IMPORTANT; } ul.footer-link-list li { gap: 8px; } .vc_toggle.vc_toggle_arrow.vc_toggle_color_white.vc_toggle_size_md.accordion-header { background: #fff !important; } .banner-text h1 { font-size: 51px; } .srevice-detail-page { padding: 40px 0; } .ffttth { margin: 1px 100px !important; } .testi-main.text-center h2 { color: #fff; } .vc_toggle_title { padding: 20px 32px; background-color: #000; color: #fff; font-size: 20px; line-height: 50px; border-radius: 0; font-weight: 500; } .vc_toggle_title h4 { color: #fff; } i.vc_toggle_icon { float: right; /* color: #fff !important; */ } .vc_toggle.vc_toggle_arrow.vc_toggle_color_default.vc_toggle_size_md.accordion-header { background: white; border-radius: 10px; } .vc_toggle.vc_toggle_default.vc_toggle_color_default.vc_toggle_size_md.accordion-header.vc_toggle_active { border-top: 0; border-radius: 0 0 10px 10px; position: relative; background: white !important; } .vc_toggle_content { padding: 20px; } @media only screen and (min-width: 300px) and (max-width: 519px){ .ffttth { margin: 1px 11px !important; } .service-text { height: 390px; } .vc_toggle_title h4 { color: #fff; font-size: 18px; line-height: 1px !important; } .testi-main.text-center h2 { font-size: 21px; line-height: 36px; } .vc_toggle.vc_toggle_arrow.vc_toggle_color_white.vc_toggle_size_md.accordion-header { background: #fff; } .about-text-box h2 { font-size: 39px; } .ddgd { margin-left: 3px; } } /* ipoad */ /*ipad ipad pro */ @media only screen and (min-device-width: 768px) and (max-device-width: 1023px) { .service-text { height: 510px; } .ffttth { margin: 1px 30px !important; } .vc_toggle.vc_toggle_arrow.vc_toggle_color_white.vc_toggle_size_md.accordion-header { background: #fff; } } /* emnd */ </style> <style type="text/css" data-type="vc_custom-css">.vc_row-fluid.container { left: 0px !important; }</style><style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1697528260593{padding-right: 10px !important;}</style><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=AW-11323946985"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-11323946985'); </script> </head> <body class="wp-singular page-template-default page page-id-102 wp-custom-logo wp-theme-chimney wpb-js-composer js-comp-ver-6.6.0 vc_responsive"> <!-- header strat --> <header id="header-1"> <div class="topSec"> <div class="container"> <div class="row"> <div class="col-lg-6 col-md-4"> </div> <div class="col-lg-5 col-md-6 col-12"> <ul class="top-bar-right"> <li> <a href="tel:386-451-5321"><i class="fa-solid fa-phone"></i> 386-451-5321</a> </li> <li> <a href="mailto:AllAboutChimneysFL@gmail.com"><i class="fa-solid fa-envelope"></i> AllAboutChimneysFL@gmail.com</a> </li> </ul> </div> <div class="col-lg-1 col-md-1 col-6"> <ul class="header-social"> <li> <a href="#"><i class="fa-brands fa-facebook-f"></i></a> </li> </ul> </div> </div> </div> </div> <div class="menuSec"> <div class="container"> <div class="row"> <div class="col-lg-2 col-md-3 col-sm-4 col-6 "> <div class="header-logo"> <a href="https://www.allaboutchimneys.net/" class="custom-logo-link" rel="home"><img width="600" height="422" src="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/logo.png" class="custom-logo" alt="Chimney" decoding="async" fetchpriority="high" /></a> </div> </div> <div class="col-lg-10 col-md-12 col-sm-4 d-none d-md-block"> <div class="menu-main-menu-1-container"><ul id="menu" class="menu"><li id="menu-item-68" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-68"><a href="https://www.allaboutchimneys.net/">Home</a></li> <li id="menu-item-78" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-78"><a href="https://www.allaboutchimneys.net/about-us/">About us</a></li> <li id="menu-item-94" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-94"><a href="https://www.allaboutchimneys.net/services/">Services</a></li> <li id="menu-item-97" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-97"><a href="https://www.allaboutchimneys.net/why-choose-us/">Why Choose Us</a></li> <li id="menu-item-103" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-102 current_page_item menu-item-103"><a href="https://www.allaboutchimneys.net/gallery/" aria-current="page">Gallery</a></li> <li id="menu-item-118" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-118"><a href="https://www.allaboutchimneys.net/testimonial/">Testimonial</a></li> <li id="menu-item-121" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-121"><a href="https://www.allaboutchimneys.net/contact-us/">Contact Us</a></li> <li id="menu-item-260" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-260"><a href="https://www.allaboutchimneys.net/faqs/">FAQs</a></li> </ul></div> <!-- <ul id="menu"> <li><a href="index.html">Home</a></li> <li><a href="about.html">About Us</a></li> <li><a href="service.html">Services</a></li> <li><a href="choose.html">Why Choose Us</a></li> <li><a href="gallery.html">Gallery</a></li> <li><a href="testimonial.html">Testimonials</a></li> <li><a href="contact.html">Contact Us</a></li> </ul> --> </div> <div class="col-lg-2 col-md-3 col-sm-4 col-6 text-right"> </div> </div> </div> </div> </header> <!-- header strat --> [render_inner_banner] <section class="inner-sect"> <div class="container"> <section data-vc-full-width="true" data-vc-full-width-init="false" class="vc_section gallery-sec vc_custom_1697528260593"><div data-vc-full-width="true" data-vc-full-width-init="false" class="vc_row wpb_row vc_row-fluid container"><div class="col-lg-5 col-md-7 centerCol wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element sec-head" > <div class="wpb_wrapper"> <h2>Our Gallery</h2> </div> </div> </div></div></div></div><div class="vc_row-full-width vc_clearfix"></div><div class="vc_row wpb_row vc_row-fluid"><div class="galery-image wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_left gal-1"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img decoding="async" width="600" height="450" src="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/gal-1.jpg" class="vc_single_image-img attachment-full" alt="" /></div> </figure> </div> <div class="wpb_single_image wpb_content_element vc_align_left gal-2"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img decoding="async" width="690" height="460" src="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/gal-2.jpg" class="vc_single_image-img attachment-full" alt="" /></div> </figure> </div> </div></div></div><div class="galery-image wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_left gal-3"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img decoding="async" width="526" height="526" src="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/gal-3.jpg" class="vc_single_image-img attachment-full" alt="" /></div> </figure> </div> <div class="wpb_single_image wpb_content_element vc_align_left gal-4"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img loading="lazy" decoding="async" width="552" height="341" src="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/gal-4.jpg" class="vc_single_image-img attachment-full" alt="" /></div> </figure> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_left gal-5"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img loading="lazy" decoding="async" width="455" height="476" src="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/gal-5.jpg" class="vc_single_image-img attachment-full" alt="" /></div> </figure> </div> <div class="wpb_single_image wpb_content_element vc_align_left gal-6"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img loading="lazy" decoding="async" width="745" height="498" src="https://www.allaboutchimneys.net/wp-content/uploads/2023/10/gal-6.jpg" class="vc_single_image-img attachment-full" alt="" /></div> </figure> </div> </div></div></div></div></section><div class="vc_row-full-width vc_clearfix"></div> <div style="position: absolute; left: -24813px;"><a href="https://thecloakanddagger.co.uk/">top european online casinos</a></div> </div> </section> <!-- footer strat ================================================ --> <footer class="footer-sec" id="footer-1"> <div class="container"> <div class="row"> <div class="col-lg-4 col-md-4"> <div class="footer-text wow fadeInLeft"> <img src="http://allaboutchimneys.net/wp-content/uploads/2023/10/footer-logo.png" alt="" class="ftr-logo"> <ul class="footer-social-list"> <li><a href="#"><i class="fab fa-facebook-f"></i></a></li> <!-- <li><a href="#"><i class="fab fa-twitter"></i></a></li> <li><a href="#"><i class="fab fa-linkedin-in"></i></a></li> <li><a href="#"><i class="fab fa-google"></i></a></li> --> </ul> </div> </div> <div class="col-lg-4 col-md-3"> <div class="footer-text ftr-border wow slideInLeft"> <h2>Quick <span>Links</span></h2> <ul class="footer-link"> <li><a href="http://allaboutchimneys.net/">Home</a></li> <li><a href="http://allaboutchimneys.net/about-us/">About Us</a></li> <li><a href="http://allaboutchimneys.net/services/">Services</a></li> <li><a href="http://allaboutchimneys.net/testimonial/">Testimonials</a></li> <li><a href="http://allaboutchimneys.net/contact-us/">Contact Us</a></li> </ul> </div> </div> <div class="col-lg-4 col-md-5"> <div class="footer-text wow fadeInRight"> <h2>Contact <span>Info</span></h2> <ul class="footer-link-list"> <li><i class="fas fa-map-marker-alt"></i> <p><p>Daytona Beach, FL</p></p> </li> <li><i class="fal fa-envelope"></i> <a href="mailto:AllAboutChimneysFL@gmail.com"> <p>AllAboutChimneysFL@gmail.com</p> </a> </li> <li><i class="fal fa-phone"></i> <a href="Tel:386-451-5321"> <p>386-451-5321</p> </a> </li> </ul> </div> </div> </div> </div> <section class="bottom-nav"> <div class="container"> <div class="row"> <div class="col-lg-12"> <p>Copyright © 2023 All About Chimneys All rights reserved</p> </div> </div> </div> </section> <div class="scroll-up"> <a href="#header-1"><i class="fa-regular fa-arrow-up-long"></i></a> </div> </footer> <!-- footer END --> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/chimney/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script> gtag('config', 'AW-11323946985/blqZCNahnvIYEOnv1pcq', { 'phone_conversion_number': '386-451-5321' }); </script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after /* ]]> */ </script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.4" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/www.allaboutchimneys.net\/wp-json\/", "namespace": "contact-form-7\/v1" } }; //# sourceURL=contact-form-7-js-before /* ]]> */ </script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.4" id="contact-form-7-js"></script> <script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=6Le7NKYoAAAAADNhGnLGdNe-OFksaJc6b62iHze1&ver=3.0" id="google-recaptcha-js"></script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0" id="wp-polyfill-js"></script> <script type="text/javascript" id="wpcf7-recaptcha-js-before"> /* <![CDATA[ */ var wpcf7_recaptcha = { "sitekey": "6Le7NKYoAAAAADNhGnLGdNe-OFksaJc6b62iHze1", "actions": { "homepage": "homepage", "contactform": "contactform" } }; //# sourceURL=wpcf7-recaptcha-js-before /* ]]> */ </script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.1.4" id="wpcf7-recaptcha-js"></script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.allaboutchimneys.net/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=6.6.0" id="wpb_composer_front_js-js"></script> <script id="wp-emoji-settings" type="application/json"> {"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.allaboutchimneys.net/wp-includes/js/wp-emoji-release.min.js?ver=6.9.1"}} </script> <script type="module"> /* <![CDATA[ */ /*! This file is auto-generated */ const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))}); //# sourceURL=https://www.allaboutchimneys.net/wp-includes/js/wp-emoji-loader.min.js /* ]]> */ </script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/js/jquery-3.6.0.min.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/js/wow.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/slick/slick.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/slick/slick.min.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/js/jquery.slicknav.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/js/fancybox.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/js/bootstrap.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/js/custom.js"></script> <script src="https://www.allaboutchimneys.net/wp-content/themes/chimney/fontawesome5/font-awesomejs/font.js"></script> </body> </html>