Previewing Content Changes In Your Work With document.designMode — Smashing Magazine

Published on:

So, you just deployed a change to your website. Congrats! Everything went according to plan, but now that you look at your work in production, you start questioning your change. Perhaps that change was as simple as a new heading and doesn’t seem to fit the space. Maybe you added an image, but it just doesn’t feel right in that specific context.

What do you do? Do you start deploying more changes? It’s not like you need to crack open Illustrator or Figma to mock up a small change like that, but previewing your changes before deploying them would still be helpful.

Enter document.designMode. It’s not new. In fact, I just recently came across it for the first time and had one of those “Wait, this exists?” moments because it’s a tool we’ve had forever, even in Internet Explorer 6. But for some reason, I’m only now hearing about it, and it turns out that many of my colleagues are also hearing about it for the first time.

What exactly is document.designMode? Perhaps a little video demonstration can help demonstrate how it allows you to make direct edits to a page.

Video demonstration of how document.designMode works.

At its simplest, document.designMode makes webpages editable, similar to a text editor. I’d say it’s like having an edit mode for the web — one can click anywhere on a webpage to modify existing text, move stuff around, and even delete elements. It’s like having Apple’s “Distraction Control” feature at your beck and call.

I think this is a useful tool for developers, designers, clients, and regular users alike.

You might be wondering if this is just like contentEditable because, at a glance, they both look similar. But no, the two serve different purposes. contentEditable is more focused on making a specific element editable, while document.designMode makes the whole page editable.

Enabling document.designMode can be done in the browser’s developer tools:

  1. Right-click anywhere on a webpage and click Inspect.
  2. Click the Console tab.
  3. Type document.designMode = "on" and press Enter.

To turn it off, refresh the page. That’s it.

Another method is to create a bookmark that activates the mode when clicked:

  1. Create a new bookmark in your browser.
  2. You can name it whatever, e.g., “EDIT_MODE”.
  3. Input this code in the URL field:
javascript:(function(){document.designMode = document.designMode === 'on' ? 'off' : 'on';})();

And now you have a switch that toggles document.designMode on and off.

Use Cases

There are many interesting, creative, and useful ways to use this tool.

Basic Content Editing

I dare say this is the core purpose of document.designMode, which is essentially editing any text element of a webpage for whatever reason. It could be the headings, paragraphs, or even bullet points. Whatever the case, your browser effectively becomes a “What You See Is What You Get” (WYSIWYG) editor, where you can make and preview changes on the spot.

Basic content editing using document.designMode.

Landing Page A/B Testing

Let’s say we have a product website with an existing copy, but then you check out your competitors, and their copy looks more appealing. Naturally, you’d want to test it out. Instead of editing on the back end or taking notes for later, you can use document.designMode to immediately see how that copy variation would fit into the landing page layout and then easily compare and contrast the two versions.

Landing page A/B testing with document.designMode.

This could also be useful for copywriters or solo developers.

SEO Title And Meta Description

Everyone wants their website to rank at the top of search results because that means more traffic. However, as broad as SEO is as a practice, the </code> tag and <code><meta/></code> description is a website’s first impression in search results, both for visitors and search engines, as they can make or break the click-through rate.</p> <p>The question that arises is, how do you know if certain text gets cut off in search results? I think <code>document.designMode</code> can fix that before pushing it live.</p> <figure class="video-embed-container break-out"><figcaption>SEO title and meta description with <code>document.designMode</code>.</figcaption></figure> <p>With this tool, I think it’d be a lot easier to see how different title lengths look when truncated, whether the keywords are instantly visible, and how compelling it’d be compared to other competitors on the same search result.</p> <h3 id="developer-workflows">Developer Workflows</h3> <p>To be completely honest, developers probably won’t want to use <code>document.designMode</code> for actual development work. However, it can still be handy for breaking stuff on a website, moving elements around, repositioning images, deleting UI elements, and undoing what was deleted, all in real time.</p> <p>This could help if you’re skeptical about the position of an element or feel a button might do better at the top than at the bottom; <code>document.designMode</code> sure could help. It sure beats rearranging elements in the codebase just to determine if an element positioned differently would look good. But again, most of the time, we’re developing in a local environment where these things can be done just as effectively, so your mileage may vary as far as how useful you find <code>document.designMode</code> in your development work.</p> <h3 id="client-and-team-collaboration">Client And Team Collaboration</h3> <p>It is a no-brainer that some clients almost always have last-minute change requests — stuff like <em>“Can we remove this button?”</em> or <em>“Let’s edit the pricing features in the free tier.”</em></p> <p>To the client, these are just little tweaks, but to you, it could be a hassle to start up your development environment to make those changes. I believe <code>document.designMode</code> can assist in such cases by making those changes in seconds without touching production and sharing screenshots with the client.</p> <figure class="video-embed-container break-out"><figcaption>Client and team collaboration with <code>document.designMod</code>.</figcaption></figure> <p>It could also become useful in <strong>team meetings when discussing UI changes</strong>. Seeing changes in real-time through screen sharing can help facilitate discussion and lead to quicker conclusions.</p> <h3 id="live-dom-tutorials">Live DOM Tutorials</h3> <p>For beginners learning web development, I feel like <code>document.designMode</code> can help provide a first look at how it feels to manipulate a webpage and immediately see the results — sort of like <strong>a pre-web development stage</strong>, even before touching a code editor.</p> <p>As learners experiment with moving things around, an instructor can explain how each change works and affects the flow of the page.</p> <h3 id="social-media-content-preview">Social Media Content Preview</h3> <p>We can use the same idea to preview social media posts before publishing them! For instance, <code>document.designMode</code> can gauge the effectiveness of different call-to-action phrases or visualize how ad copy would look when users stumble upon it when scrolling through the platform. This would be effective on any social media platform.</p> <figure class="video-embed-container break-out"><figcaption>Social media content preview with <code>document.designMode</code>.</figcaption></figure> <h3 id="memes">Memes</h3> <p>I didn’t think it’d be fair not to add this. It might seem out of place, but let’s be frank: creating memes is probably one of the first things that comes to mind when anyone discovers <code>document.designMode</code>.</p> <p>You can create parody versions of social posts, tweak article headlines, change product prices, and manipulate YouTube views or Reddit comments, just to name a few of the ways you could meme things. Just remember: this shouldn’t be used to spread false information or cause actual harm. Please keep it respectful and ethical!</p> <h2 id="conclusion">Conclusion</h2> <p><code>document.designMode = "on"</code> is one of those delightful browser tricks that can be immediately useful when you discover it for the first time. It’s a raw and primitive tool, but you can’t deny its utility and purpose.</p> <p>So, give it a try, show it to your colleagues, or even edit this article. You never know when it might be exactly what you need.</p> <h3 id="further-reading">Further Reading</h3> <div class="signature"><br /> <span>(gg, yk)</span></div> </div> <p><a href="https://smashingmagazine.com/2025/03/previewing-content-changes-work-documentdesignmode/">Source link </a></p> </div></div><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_85 td_separator_dotted td_separator_center"><span style="border-color:rgba(255,255,255,0.05);border-width:4px;width:100%;"></span> <style scoped>.tdi_85{margin-top:30px!important;margin-bottom:20px!important;width:100%!important}@media (min-width:1019px) and (max-width:1140px){.tdi_85{margin-top:20px!important;margin-bottom:15px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_85{margin-top:15px!important;margin-bottom:10px!important}}@media (max-width:767px){.tdi_85{margin-top:20px!important;margin-bottom:15px!important}}</style></div></div></div><div class="vc_column tdi_88 wpb_column vc_column_container tdc-column td-pb-span4 td-is-sticky"> <style scoped>.tdi_88{vertical-align:baseline}.tdi_88>.wpb_wrapper,.tdi_88>.wpb_wrapper>.tdc-elements{display:block}.tdi_88>.wpb_wrapper>.tdc-elements{width:100%}.tdi_88>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_88>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" data-sticky-enabled-on="W3RydWUsdHJ1ZSx0cnVlLHRydWVd" data-sticky-offset="20" data-sticky-is-width-auto="W2ZhbHNlLGZhbHNlLGZhbHNlLGZhbHNlXQ=="><div class="tdm_block td_block_wrap tdm_block_column_title tdi_89 tdm-content-horiz-left td-pb-border-top td_block_template_1" data-td-block-uid="tdi_89" > <style>.tdi_89{margin-top:-10px!important;margin-bottom:20px!important}@media (min-width:1019px) and (max-width:1140px){.tdi_89{margin-bottom:12px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_89{margin-bottom:8px!important}}@media (max-width:767px){.tdi_89{margin-bottom:12px!important}}</style><div class="td-block-row"><div class="td-block-span12 tdm-col"> <style>body .tdi_90 .tdm-title{color:var(--crypto-gaming-pro-white)}.tdi_90 .tdm-title{font-family:Muli!important;font-size:22px!important;line-height:1.2!important;font-weight:700!important}@media (min-width:1019px) and (max-width:1140px){.tdi_90 .tdm-title{font-size:20px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_90 .tdm-title{font-size:18px!important}}@media (max-width:767px){.tdi_90 .tdm-title{font-size:20px!important}}</style><div class="tds-title tds-title1 td-fix-index tdi_90 "><h3 class="tdm-title tdm-title-sm">Related</h3></div></div></div></div><div class="td_block_wrap td_flex_block_1 tdi_91 td-h-effect-up-shadow td-pb-border-top td_block_template_1 td_flex_block" data-td-block-uid="tdi_91" > <style>.tdi_91{margin-bottom:0px!important;padding-top:20px!important;border-color:rgba(255,255,255,0.1)!important;border-style:solid!important;border-width:1px 0px 0px 0px!important}@media (min-width:1019px) and (max-width:1140px){.tdi_91{padding-top:15px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_91{padding-top:10px!important}}@media (max-width:767px){.tdi_91{padding-top:20px!important}}</style> <style>.tdi_91 .td-image-wrap{padding-bottom:70%}.tdi_91 .entry-thumb{background-position:center 50%}.tdi_91 .td-image-container{flex:0 0 20%;width:20%;display:block;order:1}.ie10 .tdi_91 .td-image-container,.ie11 .tdi_91 .td-image-container{flex:0 0 auto}.tdi_91 .td-module-container{flex-direction:row}.tdi_91 .td-module-meta-info{flex:1;padding:0 25px 0 0;display:flex;flex-direction:column;justify-content:initial;border-color:#eaeaea}body .tdi_91 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_91 .td-category-pos-above .td-post-category{align-self:flex-start}.tdi_91 .td-category-pos-image .td-post-category:not(.td-post-extra-category){top:0;bottom:auto}.tdi_91 .td-post-vid-time{top:0;bottom:auto;display:block}.tdi_91 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:20px;margin-bottom:20px}.tdi_91 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_91 .td-module-container:before{bottom:-20px;border-width:0 0 1px 0;border-style:solid;border-color:#eaeaea;border-color:rgba(255,255,255,0.08)}.tdi_91 .entry-thumb,.tdi_91 .td-image-wrap:before,.tdi_91 .td-image-wrap:after,.tdi_91 .entry-thumb:before,.tdi_91 .entry-thumb:after{border-radius:3px}.tdi_91 .td-post-category{margin:0 12px 0 0;padding:2px 0 0;background-color:rgba(117,119,119,0);color:var(--crypto-gaming-pro-accent);font-family:Muli!important;font-size:11px!important;line-height:1.2!important;font-weight:700!important}.tdi_91 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_91 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_91 .td-excerpt{display:none;margin:0 0 30px;column-count:1;column-gap:48px}.tdi_91 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_91 .td-read-more{display:none}.tdi_91 .td-author-date{display:inline}.tdi_91 .td-post-author-name{display:none}.tdi_91 .td-post-date,.tdi_91 .td-post-author-name span{display:inline-block;color:var(--crypto-gaming-pro-dark-gray-text)}.tdi_91 .entry-review-stars{margin:0 0 0 12px;color:var(--crypto-gaming-pro-dark-gray-text)}.tdi_91 .td-icon-star,.tdi_91 .td-icon-star-empty,.tdi_91 .td-icon-star-half{font-size:12px}.tdi_91 .td-module-comments{display:none}.tdi_91 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_91 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_91 .td-post-category:hover{background-color:rgba(117,119,119,0)!important;color:var(--crypto-gaming-pro-white)}.tdi_91 .td-module-title a{color:var(--crypto-gaming-pro-light-gray-text);box-shadow:inset 0 0 0 0 #000}.tdi_91 .td_module_wrap:hover .td-module-title a{color:var(--crypto-gaming-pro-accent)!important}.tdi_91 .td-module-exclusive .td-module-title a:before{display:inline-block;content:'Exclusive';padding:2px 5px;border-radius:2px;color:#ffffff;background-color:#333333;font-family:Muli!important;font-size:13px!important;line-height:1.1!important;font-weight:600!important}.tdi_91 .entry-title{margin:0 0 8px;font-family:Rajdhani!important;font-size:20px!important;line-height:1.2!important;font-weight:600!important}.tdi_91 .td-editor-date,.tdi_91 .td-editor-date .td-post-author-name a,.tdi_91 .td-editor-date .entry-date,.tdi_91 .td-module-comments a{font-family:Muli!important;font-size:11px!important;line-height:1.2!important;font-weight:700!important}html:not([class*='ie']) .tdi_91 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_91 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_91 .td-image-container{flex:0 0 16%;width:16%}.ie10 .tdi_91 .td-image-container,.ie11 .tdi_91 .td-image-container{flex:0 0 auto}.tdi_91 .td-module-meta-info{padding:0 20px 0 0}.tdi_91 .td_module_wrap{padding-bottom:15px;margin-bottom:15px;padding-bottom:15px!important;margin-bottom:15px!important}.tdi_91 .td-module-container:before{bottom:-15px}.tdi_91 .td-post-category{margin:0 10px 0 0;font-size:10px!important}.tdi_91 .entry-review-stars{margin:0 0 0 10px}.tdi_91 .td-icon-star,.tdi_91 .td-icon-star-empty,.tdi_91 .td-icon-star-half{font-size:11px}.tdi_91 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_91 .td_module_wrap .td-module-container:before{display:block!important}.tdi_91 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_91 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_91 .td-module-exclusive .td-module-title a:before{margin:0 6px 0 0;padding:2px 4px 1px;font-size:12px!important}.tdi_91 .entry-title{margin:0 0 6px;font-size:16px!important}.tdi_91 .td-editor-date,.tdi_91 .td-editor-date .td-post-author-name a,.tdi_91 .td-editor-date .entry-date,.tdi_91 .td-module-comments a{font-size:10px!important}@media (min-width:768px){.tdi_91 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_91 .td-image-container{flex:0 0 16%;width:16%}.ie10 .tdi_91 .td-image-container,.ie11 .tdi_91 .td-image-container{flex:0 0 auto}.tdi_91 .td-module-meta-info{padding:0 15px 0 0}.tdi_91 .td_module_wrap{padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.tdi_91 .td-module-container:before{bottom:-10px}.tdi_91 .td-post-category{margin:0 8px 0 0;font-size:9px!important}.tdi_91 .entry-review-stars{margin:0 0 0 8px}.tdi_91 .td-icon-star,.tdi_91 .td-icon-star-empty,.tdi_91 .td-icon-star-half{font-size:10.4px}.tdi_91 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_91 .td_module_wrap .td-module-container:before{display:block!important}.tdi_91 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_91 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_91 .td-module-exclusive .td-module-title a:before{margin:0 4px 0 0;padding:2px 3px;font-size:11px!important}.tdi_91 .entry-title{margin:0 0 4px;font-size:13px!important}.tdi_91 .td-excerpt{margin:0 0 20px}.tdi_91 .td-editor-date,.tdi_91 .td-editor-date .td-post-author-name a,.tdi_91 .td-editor-date .entry-date,.tdi_91 .td-module-comments a{font-size:9px!important}@media (min-width:768px){.tdi_91 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_91 .td-module-meta-info{padding:0 20px 0 0}.tdi_91 .td_module_wrap{padding-bottom:20px;margin-bottom:20px;padding-bottom:20px!important;margin-bottom:20px!important}.tdi_91 .td-module-container:before{bottom:-20px}.tdi_91 .td-post-category{margin:0 10px 0 0;font-size:10px!important}.tdi_91 .entry-review-stars{margin:0 0 0 10px}.tdi_91 .td-icon-star,.tdi_91 .td-icon-star-empty,.tdi_91 .td-icon-star-half{font-size:11px}.tdi_91 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_91 .td_module_wrap .td-module-container:before{display:block!important}.tdi_91 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_91 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_91 .td-module-exclusive .td-module-title a:before{margin:0 6px 0 0;padding:2px 4px 1px;font-size:12px!important}.tdi_91 .entry-title{margin:0 0 6px;font-size:18px!important}.tdi_91 .td-editor-date,.tdi_91 .td-editor-date .td-post-author-name a,.tdi_91 .td-editor-date .entry-date,.tdi_91 .td-module-comments a{font-size:10px!important}@media (min-width:768px){.tdi_91 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_91 = new tdBlock(); block_tdi_91.id = "tdi_91"; block_tdi_91.atts = '{"modules_on_row":"","hide_audio":"yes","tdc_css":"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJib3JkZXItdG9wLXdpZHRoIjoiMSIsInBhZGRpbmctdG9wIjoiMjAiLCJib3JkZXItY29sb3IiOiJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJwYWRkaW5nLXRvcCI6IjE1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjEwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=","show_btn":"none","show_com":"none","show_review":"","show_author":"none","image_floated":"float_right","image_width":"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE2IiwicG9ydHJhaXQiOiIxNiJ9","image_height":"70","image_size":"td_150x0","meta_info_align":"initial","meta_padding":"eyJhbGwiOiIwIDI1cHggMCAwIiwibGFuZHNjYXBlIjoiMCAyMHB4IDAgMCIsInBvcnRyYWl0IjoiMCAxNXB4IDAgMCIsInBob25lIjoiMCAyMHB4IDAgMCJ9","title_txt":"var(--crypto-gaming-pro-light-gray-text)","title_txt_hover":"var(--crypto-gaming-pro-accent)","date_txt":"var(--crypto-gaming-pro-dark-gray-text)","cat_bg":"rgba(117,119,119,0)","cat_bg_hover":"rgba(117,119,119,0)","cat_txt":"var(--crypto-gaming-pro-accent)","cat_txt_hover":"var(--crypto-gaming-pro-white)","f_title_font_family":"704","f_title_font_weight":"600","f_title_font_size":"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE2IiwicG9ydHJhaXQiOiIxMyIsInBob25lIjoiMTgifQ==","f_title_font_line_height":"1.2","f_cat_font_family":"406","f_cat_font_size":"eyJhbGwiOiIxMSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI5IiwicGhvbmUiOiIxMCJ9","f_cat_font_line_height":"1.2","f_meta_font_size":"eyJhbGwiOiIxMSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI5IiwicGhvbmUiOiIxMCJ9","f_meta_font_line_height":"1.2","f_meta_font_family":"406","f_meta_font_weight":"700","f_cat_font_weight":"700","image_radius":"3","modules_category_padding":"2px 0 0","modules_category_margin":"eyJhbGwiOiIwIDEycHggMCAwIiwibGFuZHNjYXBlIjoiMCAxMHB4IDAgMCIsInBvcnRyYWl0IjoiMCA4cHggMCAwIiwicGhvbmUiOiIwIDEwcHggMCAwIn0=","art_title":"eyJhbGwiOiIwIDAgOHB4IiwibGFuZHNjYXBlIjoiMCAwIDZweCIsInBvcnRyYWl0IjoiMCAwIDRweCIsInBob25lIjoiMCAwIDZweCJ9","art_excerpt":"eyJhbGwiOiIwIDAgMzBweCIsInBvcnRyYWl0IjoiMCAwIDIwcHgifQ==","excerpt_middle":"yes","mc1_el":"30","excl_txt":"Exclusive","f_excl_font_family":"406","f_excl_font_weight":"600","f_excl_font_size":"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTIifQ==","excl_radius":"2","show_excerpt":"none","all_modules_space":"eyJhbGwiOiI0MCIsImxhbmRzY2FwZSI6IjMwIiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiNDAifQ==","excl_bg":"#333333","excl_color":"#ffffff","f_excl_font_line_height":"1.1","excl_padd":"eyJhbGwiOiIycHggNXB4ICIsImxhbmRzY2FwZSI6IjJweCA0cHggMXB4IiwicG9ydHJhaXQiOiIycHggM3B4ICIsInBob25lIjoiMnB4IDRweCAxcHgifQ==","modules_divider":"solid","modules_border_color":"","modules_divider_color":"rgba(255,255,255,0.08)","excl_margin":"eyJsYW5kc2NhcGUiOiIwIDZweCAwIDAiLCJwb3J0cmFpdCI6IjAgNHB4IDAgMCIsInBob25lIjoiMCA2cHggMCAwIn0=","h_effect":"up-shadow","rev_txt":"var(--crypto-gaming-pro-dark-gray-text)","review_size":"eyJhbGwiOiIxIiwibGFuZHNjYXBlIjoiMC41IiwicG9ydHJhaXQiOiIwLjIiLCJwaG9uZSI6IjAuNSJ9","review_space":"eyJhbGwiOiIwIDAgMCAxMnB4IiwibGFuZHNjYXBlIjoiMCAwIDAgMTBweCIsInBvcnRyYWl0IjoiMCAwIDAgOHB4IiwicGhvbmUiOiIwIDAgMCAxMHB4In0=","category_id":"","limit":"7","block_type":"td_flex_block_1","separator":"","custom_title":"","custom_url":"","block_template_id":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","post_ids":"-1642","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","sort":"","popular_by_date":"","linked_posts":"","favourite_only":"","locked_only":"","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_ajax_filter_type":"","td_ajax_filter_ids":"","td_filter_default_txt":"All","td_ajax_preloading":"","container_width":"","modules_gap":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_radius":"","image_alignment":"50","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","all_excl_border":"","all_excl_border_style":"solid","excl_color_h":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_style":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","meta_space":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_date":"inline-block","review_distance":"","excerpt_col":"1","excerpt_gap":"","excerpt_inline":"","show_audio":"block","art_audio":"","art_audio_size":"1.5","btn_title":"","btn_margin":"","btn_padding":"","btn_border_width":"","btn_radius":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_family":"","f_header_font_size":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_weight":"","f_header_font_transform":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_family":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_weight":"","f_more_font_transform":"","f_more_font_spacing":"","f_more_":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","f_btn_font_title":"Article read more button","f_btn_font_settings":"","f_btn_font_family":"","f_btn_font_size":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_weight":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","ex_txt":"","com_bg":"","com_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","btn_bg":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border":"","btn_border_hover":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_h_bg":"","pag_border":"","pag_h_border":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_91","tdc_css_class":"tdi_91","tdc_css_class_style":"tdi_91_rand_style"}'; block_tdi_91.td_column_number = "1"; block_tdi_91.block_type = "td_flex_block_1"; block_tdi_91.post_count = "7"; block_tdi_91.found_posts = "472"; block_tdi_91.header_color = ""; block_tdi_91.ajax_pagination_infinite_stop = ""; block_tdi_91.max_num_pages = "68"; tdBlocksArray.push(block_tdi_91); </script><div class="td-block-title-wrap"></div><div id=tdi_91 class="td_block_inner td-mc1-wrap"> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://alhalnews.com/gaming/building-a-library-of-images-for-everyone-toucharcade/" rel="bookmark" class="td-image-wrap " title="Building a Library of Images for Everyone | TouchArcade" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://alhalnews.com/wp-content/uploads/2025/02/Free-Music-Resource-soundimageorg-TouchArcade.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://alhalnews.com/gaming/building-a-library-of-images-for-everyone-toucharcade/" rel="bookmark" title="Building a Library of Images for Everyone | TouchArcade">Building a Library of Images for Everyone | TouchArcade</a></h3> <div class="td-editor-date"> <a href="https://alhalnews.com/gaming/" class="td-post-category" >Gaming</a> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-30T23:05:34-07:00" >March 30, 2025</time></span> </span> </div> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://alhalnews.com/movies/the-white-lotus-season-3-episode-7-recap-qa-with-jon-gries/" rel="bookmark" class="td-image-wrap " title="The White Lotus Season 3 Episode 7 Recap & Q&A With Jon Gries" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://alhalnews.com/wp-content/uploads/2025/03/The-White-Lotus-Season-3-Episode-7-Recap-QA-150x84.jpeg" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://alhalnews.com/movies/the-white-lotus-season-3-episode-7-recap-qa-with-jon-gries/" rel="bookmark" title="The White Lotus Season 3 Episode 7 Recap & Q&A With Jon Gries">The White Lotus Season 3 Episode 7 Recap & Q&A With Jon Gries</a></h3> <div class="td-editor-date"> <a href="https://alhalnews.com/movies/" class="td-post-category" >Movies</a> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-30T20:57:24-07:00" >March 30, 2025</time></span> </span> </div> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://alhalnews.com/ui-ux/adaptive-video-streaming-with-dash-js-in-react-smashing-magazine/" rel="bookmark" class="td-image-wrap " title="Adaptive Video Streaming With Dash.js In React — Smashing Magazine" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://alhalnews.com/wp-content/uploads/2025/03/Adaptive-Video-Streaming-With-Dashjs-In-React-—-Smashing-Magazine-150x84.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://alhalnews.com/ui-ux/adaptive-video-streaming-with-dash-js-in-react-smashing-magazine/" rel="bookmark" title="Adaptive Video Streaming With Dash.js In React — Smashing Magazine">Adaptive Video Streaming With Dash.js In React — Smashing Magazine</a></h3> <div class="td-editor-date"> <a href="https://alhalnews.com/ui-ux/" class="td-post-category" >UI / UX</a> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-30T07:55:40-07:00" >March 30, 2025</time></span> </span> </div> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://alhalnews.com/web-development/autogrow-textareas-with-css/" rel="bookmark" class="td-image-wrap " title="AutoGrow Textareas with CSS" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://alhalnews.com/wp-content/uploads/2025/01/How-to-Download-a-YouTube-Video-or-Channel-150x116.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://alhalnews.com/web-development/autogrow-textareas-with-css/" rel="bookmark" title="AutoGrow Textareas with CSS">AutoGrow Textareas with CSS</a></h3> <div class="td-editor-date"> <a href="https://alhalnews.com/web-development/" class="td-post-category" >Web Development</a> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-30T07:49:48-07:00" >March 30, 2025</time></span> </span> </div> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://alhalnews.com/android/aaa-630-io23-this-is-the-way-artificial-intelligence-everywhere-pixel-tablet-fold-7a-project-starline/" rel="bookmark" class="td-image-wrap " title="AAA 630: IO23: This Is The Way – Artificial Intelligence everywhere, Pixel Tablet/Fold/7a, Project Starline" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://alhalnews.com/wp-content/uploads/2025/03/AAA-630-IO23-This-Is-The-Way-Artificial-Intelligence-150x84.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://alhalnews.com/android/aaa-630-io23-this-is-the-way-artificial-intelligence-everywhere-pixel-tablet-fold-7a-project-starline/" rel="bookmark" title="AAA 630: IO23: This Is The Way – Artificial Intelligence everywhere, Pixel Tablet/Fold/7a, Project Starline">AAA 630: IO23: This Is The Way – Artificial Intelligence everywhere, Pixel Tablet/Fold/7a, Project Starline</a></h3> <div class="td-editor-date"> <a href="https://alhalnews.com/android/" class="td-post-category" >Android</a> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-30T07:47:14-07:00" >March 30, 2025</time></span> </span> </div> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://alhalnews.com/apple/that-loving-feeling/" rel="bookmark" class="td-image-wrap " title="That Loving Feeling" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://alhalnews.com/wp-content/uploads/2025/03/That-Loving-Feeling-150x100.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://alhalnews.com/apple/that-loving-feeling/" rel="bookmark" title="That Loving Feeling">That Loving Feeling</a></h3> <div class="td-editor-date"> <a href="https://alhalnews.com/apple/" class="td-post-category" >Apple</a> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-30T07:46:02-07:00" >March 30, 2025</time></span> </span> </div> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://alhalnews.com/gaming/five-years-of-working-from-home/" rel="bookmark" class="td-image-wrap " title="Five Years of Working From Home" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://alhalnews.com/wp-content/uploads/2025/03/Five-Years-of-Working-From-Home-150x113.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://alhalnews.com/gaming/five-years-of-working-from-home/" rel="bookmark" title="Five Years of Working From Home">Five Years of Working From Home</a></h3> <div class="td-editor-date"> <a href="https://alhalnews.com/gaming/" class="td-post-category" >Gaming</a> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-29T23:03:33-07:00" >March 29, 2025</time></span> </span> </div> </div> </div> </div> </div></div></div></div></div></div><div id="tdi_92" class="tdc-row stretch_row_1400 td-stretch-content"><div class="vc_row tdi_93 wpb_row td-pb-row" > <style scoped>.tdi_93,.tdi_93 .tdc-columns{min-height:0}.tdi_93,.tdi_93 .tdc-columns{display:block}.tdi_93 .tdc-columns{width:100%}.tdi_93:before,.tdi_93:after{display:table}@media (min-width:768px){.tdi_93{margin-left:-40px;margin-right:-40px}.tdi_93 .tdc-row-video-background-error,.tdi_93>.vc_column,.tdi_93>.tdc-columns>.vc_column{padding-left:40px;padding-right:40px}}@media (min-width:1019px) and (max-width:1140px){@media (min-width:768px){.tdi_93{margin-left:-30px;margin-right:-30px}.tdi_93 .tdc-row-video-background-error,.tdi_93>.vc_column,.tdi_93>.tdc-columns>.vc_column{padding-left:30px;padding-right:30px}}}@media (min-width:768px) and (max-width:1018px){@media (min-width:768px){.tdi_93{margin-left:-25px;margin-right:-25px}.tdi_93 .tdc-row-video-background-error,.tdi_93>.vc_column,.tdi_93>.tdc-columns>.vc_column{padding-left:25px;padding-right:25px}}}@media (max-width:767px){.tdi_93,.tdi_93 .tdc-columns{display:flex;flex-direction:column-reverse;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start}.tdi_93 .tdc-columns{width:100%}.tdi_93:before,.tdi_93:after{display:none}}.tdi_93{padding-top:40px!important;padding-right:50px!important;padding-bottom:80px!important;padding-left:50px!important}.tdi_93 .td_block_wrap{text-align:left}@media (min-width:1019px) and (max-width:1140px){.tdi_93{padding-top:20px!important;padding-right:40px!important;padding-bottom:60px!important;padding-left:40px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_93{padding-top:15px!important;padding-right:20px!important;padding-bottom:40px!important;padding-left:20px!important}}@media (max-width:767px){.tdi_93{padding-top:20px!important;padding-right:0px!important;padding-bottom:40px!important;padding-left:0px!important}}</style><div class="vc_column tdi_95 wpb_column vc_column_container tdc-column td-pb-span8"> <style scoped>.tdi_95{vertical-align:baseline}.tdi_95>.wpb_wrapper,.tdi_95>.wpb_wrapper>.tdc-elements{display:block}.tdi_95>.wpb_wrapper>.tdc-elements{width:100%}.tdi_95>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_95>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_95{margin-bottom:40px!important}}</style><div class="wpb_wrapper" ></div></div><div class="vc_column tdi_97 wpb_column vc_column_container tdc-column td-pb-span4 td-is-sticky"> <style scoped>.tdi_97{vertical-align:baseline}.tdi_97>.wpb_wrapper,.tdi_97>.wpb_wrapper>.tdc-elements{display:block}.tdi_97>.wpb_wrapper>.tdc-elements{width:100%}.tdi_97>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_97>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_97{margin-bottom:60px!important}}</style><div class="wpb_wrapper" data-sticky-enabled-on="W3RydWUsdHJ1ZSx0cnVlLHRydWVd" data-sticky-offset="20" data-sticky-is-width-auto="W2ZhbHNlLGZhbHNlLGZhbHNlLGZhbHNlXQ=="></div></div></div></div></div></div> <span class="td-page-meta" itemprop="author" itemscope itemtype="https://schema.org/Person"><meta itemprop="name" content="sq81n"><meta itemprop="url" content="https://alhalnews.com/author/sq81n/"></span><meta itemprop="datePublished" content="2025-03-25T07:48:58-07:00"><meta itemprop="dateModified" content="2025-03-25T07:48:58-07:00"><meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="https://alhalnews.com/ui-ux/previewing-content-changes-in-your-work-with-document-designmode-smashing-magazine/"/><span class="td-page-meta" itemprop="publisher" itemscope itemtype="https://schema.org/Organization"><span class="td-page-meta" itemprop="logo" itemscope itemtype="https://schema.org/ImageObject"><meta itemprop="url" content="https://alhalnews.com/ui-ux/previewing-content-changes-in-your-work-with-document-designmode-smashing-magazine/"></span><meta itemprop="name" content="alhalnews.com"></span><meta itemprop="headline" content="Previewing Content Changes In Your Work With document.designMode — Smashing Magazine"><span class="td-page-meta" itemprop="image" itemscope itemtype="https://schema.org/ImageObject"><meta itemprop="url" content="https://alhalnews.com/wp-content/uploads/2025/03/Previewing-Content-Changes-In-Your-Work-With-documentdesignMode-—-Smashing-Magazine.jpg"><meta itemprop="width" content="1200"><meta itemprop="height" content="675"></span> </article> </div> </div> </div> <!-- #tdb-autoload-article --> <div class="td-footer-template-wrap" style="position: relative"> <div class="td-footer-wrap "> <div id="tdi_98" class="tdc-zone"><div class="tdc_zone tdi_99 wpb_row td-pb-row" > <style scoped>.tdi_99{min-height:0}.tdi_99{border-color:rgba(255,255,255,0.08)!important;border-style:solid!important;border-width:1px 0px 0px 0px!important}</style><div id="tdi_100" class="tdc-row stretch_row_content td-stretch-content"><div class="vc_row tdi_101 wpb_row td-pb-row" > <style scoped>.tdi_101,.tdi_101 .tdc-columns{min-height:0}.tdi_101,.tdi_101 .tdc-columns{display:block}.tdi_101 .tdc-columns{width:100%}.tdi_101:before,.tdi_101:after{display:table}</style><div class="vc_column tdi_103 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_103{vertical-align:baseline}.tdi_103>.wpb_wrapper,.tdi_103>.wpb_wrapper>.tdc-elements{display:block}.tdi_103>.wpb_wrapper>.tdc-elements{width:100%}.tdi_103>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_103>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_list tdi_104 td-pb-border-top td_block_template_1 tdm-list-with-icons" data-td-block-uid="tdi_104" > <style>.tdi_104 .tdm-list-item{width:100%;margin-bottom:8px}.tdi_104 .tdm-list-item:nth-last-child(-n+1){margin-bottom:0}.tdi_104{text-align:left}.tdi_104 .tdm-list-text,.tdi_104 .tdm-list-text a{color:var(--crypto-gaming-pro-light-gray-text)}.tdi_104 .tdm-list-item .tdm-list-icon{margin-right:11px}@media (min-width:1019px) and (max-width:1140px){.tdi_104 .tdm-list-item{margin-bottom:8px!important;margin-bottom:8px}.tdi_104 .tdm-list-item:nth-last-child(-n+1){margin-bottom:0!important}}@media (min-width:768px) and (max-width:1018px){.tdi_104 .tdm-list-item{margin-bottom:8px!important;margin-bottom:8px}.tdi_104 .tdm-list-item:nth-last-child(-n+1){margin-bottom:0!important}}@media (max-width:767px){.tdi_104 .tdm-list-item{margin-bottom:8px!important;margin-bottom:8px}.tdi_104 .tdm-list-item:nth-last-child(-n+1){margin-bottom:0!important}}</style><div class="tdm-col td-fix-index"><ul class="tdm-list-items"><li class="tdm-list-item"><i class="tdm-list-icon tdc-font-fa tdc-font-fa-star"></i><span class="tdm-list-text">Phone: (888) 237-0373</span></li><li class="tdm-list-item"><i class="tdm-list-icon tdc-font-fa tdc-font-fa-star"></i><span class="tdm-list-text">Email: support@alhalnews.com</span></li><li class="tdm-list-item"><i class="tdm-list-icon tdc-font-fa tdc-font-fa-star"></i><span class="tdm-list-text">Address: 90 Euclid Ave, Troy, NY, 12180</span></li></ul></div></div></div></div><div class="vc_column tdi_106 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_106{vertical-align:baseline}.tdi_106>.wpb_wrapper,.tdi_106>.wpb_wrapper>.tdc-elements{display:block}.tdi_106>.wpb_wrapper>.tdc-elements{width:100%}.tdi_106>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_106>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_block_list_menu tdi_107 td-blm-display-vertical td-pb-border-top td_block_template_1 widget" data-td-block-uid="tdi_107" > <style>.td_block_list_menu ul{flex-wrap:wrap;margin-left:12px}.td_block_list_menu ul li{margin-left:0}.td_block_list_menu ul li a{display:flex;margin-left:0}.td_block_list_menu .td-blm-menu-item-txt{display:flex;align-items:center;flex-grow:1}.td_block_list_menu .sub-menu{padding-left:22px}.td_block_list_menu .sub-menu li{font-size:13px}.td_block_list_menu li.current-menu-item>a,.td_block_list_menu li.current-menu-ancestor>a,.td_block_list_menu li.current-category-ancestor>a,.td_block_list_menu li.current-page-ancestor>a{color:var(--td_theme_color,#4db2ec)}.td_block_list_menu .td-blm-sub-icon{display:flex;align-items:center;justify-content:center;margin-left:.6em;padding:0 .6em;transition:transform .2s ease-in-out}.td_block_list_menu .td-blm-sub-icon svg{display:block;width:1em;height:auto}.td_block_list_menu .td-blm-sub-icon svg,.td_block_list_menu .td-blm-sub-icon svg *{fill:currentColor}.td_block_list_menu.td-blm-display-accordion .menu-item-has-children ul{display:none}.td_block_list_menu.td-blm-display-accordion .menu-item-has-children-open>a>.td-blm-sub-icon{transform:rotate(180deg)}.td_block_list_menu.td-blm-display-horizontal ul{display:flex}body .tdi_107 ul{text-align:left;justify-content:flex-start}body .tdi_107 ul li a{justify-content:flex-start}body .tdi_107 .td-blm-menu-item-txt{flex-grow:1}body .tdi_107 a,body .tdi_107 .td-blm-sub-icon{color:var(--crypto-gaming-pro-light-gray-text)}</style><div class="td-block-title-wrap"></div><div id=tdi_107 class="td_block_inner td-fix-index"><div class="menu-about-container"><ul id="menu-about" class="menu"><li id="menu-item-797" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-797"><a href="https://alhalnews.com/about-us/"><span class="td-blm-menu-item-txt">About Us</span></a></li> <li id="menu-item-796" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-796"><a href="https://alhalnews.com/contact-us/"><span class="td-blm-menu-item-txt">Contact Us</span></a></li> </ul></div></div></div></div></div><div class="vc_column tdi_109 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_109{vertical-align:baseline}.tdi_109>.wpb_wrapper,.tdi_109>.wpb_wrapper>.tdc-elements{display:block}.tdi_109>.wpb_wrapper>.tdc-elements{width:100%}.tdi_109>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_109>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_block_list_menu tdi_110 td-blm-display-vertical td-pb-border-top td_block_template_1 widget" data-td-block-uid="tdi_110" > <style>body .tdi_110 ul{text-align:left;justify-content:flex-start}body .tdi_110 ul li a{justify-content:flex-start}body .tdi_110 .td-blm-menu-item-txt{flex-grow:1}body .tdi_110 a,body .tdi_110 .td-blm-sub-icon{color:var(--crypto-gaming-pro-light-gray-text)}body .tdi_110 .sub-menu a,body .tdi_110 .sub-menu .td-blm-sub-icon{color:var(--crypto-gaming-pro-light-gray-text)}</style><div class="td-block-title-wrap"></div><div id=tdi_110 class="td_block_inner td-fix-index"><div class="menu-links-container"><ul id="menu-links" class="menu"><li id="menu-item-795" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-795"><a href="https://alhalnews.com/privacy-policy/"><span class="td-blm-menu-item-txt">Privacy Policy</span></a></li> <li id="menu-item-794" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-794"><a href="https://alhalnews.com/terms-and-conditions/"><span class="td-blm-menu-item-txt">Terms and Conditions</span></a></li> <li id="menu-item-793" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-793"><a href="https://alhalnews.com/returns-and-refunds-policy/"><span class="td-blm-menu-item-txt">Returns and Refunds Policy</span></a></li> <li id="menu-item-792" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-792"><a href="https://alhalnews.com/cookies-policy/"><span class="td-blm-menu-item-txt">Cookies Policy</span></a></li> </ul></div></div></div></div></div><div class="vc_column tdi_112 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_112{vertical-align:baseline}.tdi_112>.wpb_wrapper,.tdi_112>.wpb_wrapper>.tdc-elements{display:block}.tdi_112>.wpb_wrapper>.tdc-elements{width:100%}.tdi_112>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_112>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_search_form tdi_113 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_113" > <style>.tdi_113{margin-bottom:0px!important;width:280px!important}@media (min-width:1019px) and (max-width:1140px){.tdi_113{width:200px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_113{width:140px!important}}@media (max-width:767px){.tdi_113{width:100%!important}}</style> <style>.tdb_search_form{margin-bottom:40px}.tdb_search_form .tdb-search-form-inner{position:relative;display:flex;background-color:#fff}.tdb_search_form .tdb-search-form-border{position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #e1e1e1;pointer-events:none;transition:all .3s ease}.tdb_search_form .tdb-search-form-input:focus+.tdb-search-form-border{border-color:#b0b0b0}.tdb_search_form .tdb-search-form-input:not([value=""])+.tdb-search-form-border+.tdb-search-form-placeholder{display:none}.tdb_search_form .tdb-search-form-input,.tdb_search_form .tdb-search-form-btn{height:auto;min-height:32px}.tdb_search_form .tdb-search-form-input{position:relative;flex:1;background-color:transparent;line-height:19px;border:0}.tdb_search_form .tdb-search-form-placeholder{position:absolute;top:50%;transform:translateY(-50%);padding:3px 9px;font-size:12px;line-height:21px;color:#999;-webkit-transition:all 0.3s ease;transition:all 0.3s ease;pointer-events:none}.tdb_search_form .tdb-search-form-input:focus+.tdb-search-form-border+.tdb-search-form-placeholder,.tdb-search-form-input:not(:placeholder-shown)~.tdb-search-form-placeholder{opacity:0}.tdb_search_form .tdb-search-form-btn{text-shadow:none;padding:7px 15px 8px 15px;line-height:16px;margin:0;background-color:#222222;font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-size:13px;font-weight:500;color:#fff;z-index:1;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}.tdb_search_form .tdb-search-form-btn:hover{background-color:var(--td_theme_color,#4db2ec)}.tdb_search_form .tdb-search-form-btn i,.tdb_search_form .tdb-search-form-btn span{display:inline-block;vertical-align:middle}.tdb_search_form .tdb-search-form-btn i{position:relative;font-size:12px}.tdb_search_form .tdb-search-form-btn .tdb-search-form-btn-icon{position:relative}.tdb_search_form .tdb-search-form-btn .tdb-search-form-btn-icon-svg{line-height:0}.tdb_search_form .tdb-search-form-btn svg{width:12px;height:auto}.tdb_search_form .tdb-search-form-btn svg,.tdb_search_form .tdb-search-form-btn svg *{fill:#fff;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}.tdb_search_form .tdb-search-msg{font-size:12px}.td-theme-wrap .tdi_113{text-align:left}.tdi_113 .tdb-search-form-input:focus+.tdb-search-form-border+.tdb-search-form-placeholder,.tdb-search-form-input:not(:placeholder-shown)~.tdb-search-form-placeholder{top:-0%;transform:translateY(0)}.tdi_113 .tdb-search-form-input,.tdi_113 .tdb-search-form-placeholder{padding:3px 13px}.tdi_113 .tdb-search-form-inner{border-radius:5px;background-color:#000000}.tdi_113 .tdb-search-form-border{border-radius:5px;border-color:rgba(175,175,175,0.25)}.tdi_113 .tdb-search-form-input{border-top-left-radius:@input_radius;border-bottom-left-radius:@input_radius;color:var(--crypto-gaming-pro-white);font-family:Muli!important;font-size:13px!important;line-height:2.9!important;font-weight:700!important}.tdi_113 .tdb-search-form-btn svg{width:20px}.tdi_113 .tdb-search-form-btn-icon{top:0px}.tdi_113 .tdb-search-form-btn{padding:0 13px 1px;background-color:rgba(0,0,0,0);font-family:Mulish!important}.tdi_113 .tdb-search-msg{margin-top:11px}.tdi_113 .tdb-search-form-placeholder{color:rgba(255,255,255,0.5);font-family:Muli!important;font-size:13px!important;line-height:2.9!important;font-weight:700!important}.tdi_113 .tdb-search-form-input:focus+.tdb-search-form-border,.tdi_113 .tdb-search-form-input:focus+.tdb-search-form-placeholder+.tdb-search-form-border{border-color:var(--crypto-gaming-pro-accent)!important}.tdi_113 .tdb-search-form-btn i{color:rgba(255,255,255,0.5)}.tdi_113 .tdb-search-form-btn svg,.tdi_113 .tdb-search-form-btn svg *{fill:rgba(255,255,255,0.5)}.tdi_113 .tdb-search-form-btn:hover i{color:var(--crypto-gaming-pro-accent)}.tdi_113 .tdb-search-form-btn:hover svg,.tdi_113 .tdb-search-form-btn:hover svg *{fill:var(--crypto-gaming-pro-accent)}.tdi_113 .tdb-search-form-btn:hover{background-color:rgba(0,0,0,0)}@media (min-width:1019px) and (max-width:1140px){.tdi_113 .tdb-search-form-input,.tdi_113 .tdb-search-form-placeholder{padding:3px 10px}.tdi_113 .tdb-search-form-btn svg{width:18px}.tdi_113 .tdb-search-form-btn{padding:0 10px 1px}.tdi_113 .tdb-search-form-input{font-size:12px!important;line-height:2.8!important}.tdi_113 .tdb-search-form-placeholder{font-size:12px!important;line-height:2.8!important}}@media (min-width:768px) and (max-width:1018px){.tdi_113 .tdb-search-form-input,.tdi_113 .tdb-search-form-placeholder{padding:2px 8px 3px}.tdi_113 .tdb-search-form-btn svg{width:14px}.tdi_113 .tdb-search-form-input{font-size:11px!important;line-height:2.4!important}.tdi_113 .tdb-search-form-placeholder{font-size:11px!important;line-height:2.4!important}}@media (max-width:767px){.tdi_113 .tdb-search-form-input,.tdi_113 .tdb-search-form-placeholder{padding:3px 10px}.tdi_113 .tdb-search-form-btn svg{width:18px}.tdi_113 .tdb-search-form-btn{padding:0 10px 1px}.tdi_113 .tdb-search-form-input{font-size:12px!important;line-height:2.8!important}.tdi_113 .tdb-search-form-placeholder{font-size:12px!important;line-height:2.8!important}}</style><div class="tdb-block-inner td-fix-index"><form method="get" class="tdb-search-form" action="https://alhalnews.com/"><div role="search" class="tdb-search-form-inner"><input id="tdb-search-form-input-tdi_113" class="tdb-search-form-input" placeholder=" " type="text" value="" name="s" /><div class="tdb-search-form-border"></div><label for="tdb-search-form-input-tdi_113" class="tdb-search-form-placeholder">Search</label><button class="wpb_button wpb_btn-inverse tdb-search-form-btn" aria-label="Search" type="submit"><span class="tdb-search-form-btn-icon tdb-search-form-btn-svg" ><svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path d="M980.152 934.368l-189.747-189.747c60.293-73.196 90.614-163 90.552-252.58 0.061-101.755-38.953-203.848-116.603-281.498-77.629-77.67-179.732-116.664-281.446-116.603-101.765-0.061-203.848 38.932-281.477 116.603-77.65 77.629-116.664 179.743-116.623 281.467-0.041 101.755 38.973 203.848 116.623 281.436 77.629 77.64 179.722 116.654 281.477 116.593 89.569 0.061 179.395-30.249 252.58-90.501l189.737 189.757 54.927-54.927zM256.358 718.519c-62.669-62.659-93.839-144.394-93.86-226.509 0.020-82.094 31.191-163.85 93.86-226.54 62.669-62.638 144.425-93.809 226.55-93.839 82.084 0.031 163.84 31.201 226.509 93.839 62.638 62.659 93.809 144.445 93.829 226.57-0.020 82.094-31.191 163.84-93.829 226.478-62.669 62.628-144.404 93.798-226.509 93.829-82.125-0.020-163.881-31.191-226.55-93.829z"></path></svg></span></button></div></form></div></div></div></div></div></div><div id="tdi_114" class="tdc-row stretch_row_content td-stretch-content"><div class="vc_row tdi_115 wpb_row td-pb-row tdc-element-style" > <style scoped>.tdi_115,.tdi_115 .tdc-columns{min-height:0}.tdi_115,.tdi_115 .tdc-columns{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center}.tdi_115 .tdc-columns{width:100%}.tdi_115:before,.tdi_115:after{display:none}@media (min-width:768px){.tdi_115{margin-left:-20px;margin-right:-20px}.tdi_115 .tdc-row-video-background-error,.tdi_115>.vc_column,.tdi_115>.tdc-columns>.vc_column{padding-left:20px;padding-right:20px}}@media (min-width:1019px) and (max-width:1140px){@media (min-width:768px){.tdi_115{margin-left:-15px;margin-right:-15px}.tdi_115 .tdc-row-video-background-error,.tdi_115>.vc_column,.tdi_115>.tdc-columns>.vc_column{padding-left:15px;padding-right:15px}}}@media (min-width:768px) and (max-width:1018px){@media (min-width:768px){.tdi_115{margin-left:-10px;margin-right:-10px}.tdi_115 .tdc-row-video-background-error,.tdi_115>.vc_column,.tdi_115>.tdc-columns>.vc_column{padding-left:10px;padding-right:10px}}}@media (max-width:767px){.tdi_115,.tdi_115 .tdc-columns{flex-wrap:wrap}}.tdi_115{padding-top:25px!important;padding-right:40px!important;padding-bottom:25px!important;padding-left:40px!important;position:relative}.tdi_115 .td_block_wrap{text-align:left}@media (min-width:1019px) and (max-width:1140px){.tdi_115{padding-top:20px!important;padding-right:20px!important;padding-bottom:20px!important;padding-left:20px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_115{padding-top:15px!important;padding-right:15px!important;padding-bottom:15px!important;padding-left:15px!important}}@media (max-width:767px){.tdi_115{padding-top:30px!important;padding-right:0px!important;padding-bottom:30px!important;padding-left:0px!important}}</style> <div class="tdi_114_rand_style td-element-style" ><div class="td-element-style-before"><style>.tdi_114_rand_style>.td-element-style-before{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;display:block!important;z-index:0!important;border-color:rgba(255,255,255,0.08)!important;border-style:solid!important;border-width:0!important}</style></div></div><div class="vc_column tdi_117 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_117{vertical-align:baseline}.tdi_117>.wpb_wrapper,.tdi_117>.wpb_wrapper>.tdc-elements{display:block}.tdi_117>.wpb_wrapper>.tdc-elements{width:100%}.tdi_117>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_117>.wpb_wrapper{width:auto;height:auto}div.tdi_117{width:auto!important}@media (max-width:767px){.tdi_117{order:1}}@media (max-width:767px){.tdi_117{padding-right:10px!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_logo tdi_118 td-pb-border-top td_block_template_1 tdb-header-align" data-td-block-uid="tdi_118" > <style>.tdi_118 .tdb-logo-a,.tdi_118 h1{flex-direction:row;align-items:center;justify-content:flex-start}.tdi_118 .tdb-logo-svg-wrap{display:block}.tdi_118 .tdb-logo-img-wrap{display:none}.tdi_118 .tdb-logo-text-tagline{margin-top:2px;margin-left:0;display:none}.tdi_118 .tdb-logo-text-title{display:none}.tdi_118 .tdb-logo-text-wrap{flex-direction:column;align-items:flex-start}.tdi_118 .tdb-logo-icon{top:0px;display:block}.tdi_118 .tdb-logo-svg-wrap>*{fill:var(--crypto-gaming-pro-white)}.tdi_118 .tdb-logo-a:hover .tdb-logo-svg-wrap>*{fill:var(--crypto-gaming-pro-accent)}@media (min-width:1019px) and (max-width:1140px){.tdi_118 .tdb-logo-svg-wrap{max-width:34px}.tdi_118 .tdb-logo-svg-wrap svg{width:34px!important;height:auto}}@media (min-width:768px) and (max-width:1018px){.tdi_118 .tdb-logo-svg-wrap{max-width:32px}.tdi_118 .tdb-logo-svg-wrap svg{width:32px!important;height:auto}}@media (max-width:767px){.tdi_118 .tdb-logo-svg-wrap{max-width:40px}.tdi_118 .tdb-logo-svg-wrap svg{width:40px!important;height:auto}}</style><div class="tdb-block-inner td-fix-index"><a class="tdb-logo-a" href="https://alhalnews.com/"></a></div></div> <!-- ./block --></div></div><div class="vc_column tdi_120 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_120{vertical-align:baseline}.tdi_120>.wpb_wrapper,.tdi_120>.wpb_wrapper>.tdc-elements{display:block}.tdi_120>.wpb_wrapper>.tdc-elements{width:100%}.tdi_120>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_120>.wpb_wrapper{width:auto;height:auto}div.tdi_120{width:auto!important}@media (max-width:767px){.tdi_120{order:2;flex-grow:1}}@media (max-width:767px){.tdi_120{padding-left:10px!important}}</style><div class="wpb_wrapper" ></div></div><div class="vc_column tdi_122 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_122{vertical-align:baseline;flex-grow:1}.tdi_122>.wpb_wrapper,.tdi_122>.wpb_wrapper>.tdc-elements{display:block}.tdi_122>.wpb_wrapper>.tdc-elements{width:100%}.tdi_122>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_122>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_122{order:4}div.tdi_122{width:4px!important}}</style><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_123 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_123" > <style>.tdi_123{text-align:center!important;margin-right:auto;margin-left:auto}.tdi_123 .tdm-descr{color:var(--crypto-gaming-pro-dark-gray-text);font-family:Muli!important;font-size:14px!important;line-height:1.4!important;font-weight:700!important}@media (min-width:1019px) and (max-width:1140px){.tdi_123 .tdm-descr{font-size:13px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_123 .tdm-descr{font-size:11px!important}}@media (max-width:767px){.tdi_123 .tdm-descr{font-size:13px!important}}</style><p class="tdm-descr">© 2025 alhalnews.com</p></div></div></div><div class="vc_column tdi_125 wpb_column vc_column_container tdc-column td-pb-span3"> <style scoped>.tdi_125{vertical-align:baseline}.tdi_125>.wpb_wrapper,.tdi_125>.wpb_wrapper>.tdc-elements{display:block}.tdi_125>.wpb_wrapper>.tdc-elements{width:100%}.tdi_125>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_125>.wpb_wrapper{width:auto;height:auto}div.tdi_125{width:auto!important}@media (max-width:767px){.tdi_125{order:3}div.tdi_125{width:100%!important}}@media (max-width:767px){.tdi_125{margin-top:15px!important;margin-bottom:10px!important}}</style><div class="wpb_wrapper" ></div></div></div></div></div></div> </div> </div> </div><!--close td-outer-wrap--> <script id="ckyBannerTemplate" type="text/template"><div class="cky-overlay cky-hide"></div><div class="cky-btn-revisit-wrapper cky-revisit-hide" data-cky-tag="revisit-consent" data-tooltip="Consent Preferences" style="background-color:#2081e2"> <button class="cky-btn-revisit" aria-label="Consent Preferences"> <img src="https://alhalnews.com/wp-content/plugins/cookie-law-info/lite/frontend/images/revisit.svg" alt="Revisit consent button"> </button></div><div class="cky-consent-container cky-hide" tabindex="0"> <div class="cky-consent-bar" data-cky-tag="notice" style="background-color:#121212;border-color:#2a2a2a"> <div class="cky-notice"> <p class="cky-title" role="heading" aria-level="1" data-cky-tag="title" style="color:#d0d0d0">We value your privacy</p><div class="cky-notice-group"> <div class="cky-notice-des" data-cky-tag="description" style="color:#d0d0d0"> <p>We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking "Accept All", you consent to our use of cookies.</p> </div><div class="cky-notice-btn-wrapper" data-cky-tag="notice-buttons"> <button class="cky-btn cky-btn-customize" aria-label="Customize" data-cky-tag="settings-button" style="color:#d0d0d0;background-color:transparent;border-color:#d0d0d0">Customize</button> <button class="cky-btn cky-btn-reject" aria-label="Reject All" data-cky-tag="reject-button" style="color:#d0d0d0;background-color:transparent;border-color:#d0d0d0">Reject All</button> <button class="cky-btn cky-btn-accept" aria-label="Accept All" data-cky-tag="accept-button" style="color:#d0d0d0;background-color:#2081e2;border-color:#2081e2">Accept All</button> </div></div></div></div></div><div class="cky-modal" tabindex="0"> <div class="cky-preference-center" data-cky-tag="detail" style="color:#d0d0d0;background-color:#121212;border-color:#2a2a2a"> <div class="cky-preference-header"> <span class="cky-preference-title" role="heading" aria-level="1" data-cky-tag="detail-title" style="color:#d0d0d0">Customize Consent Preferences</span> <button class="cky-btn-close" aria-label="[cky_preference_close_label]" data-cky-tag="detail-close"> <img src="https://alhalnews.com/wp-content/plugins/cookie-law-info/lite/frontend/images/close.svg" alt="Close"> </button> </div><div class="cky-preference-body-wrapper"> <div class="cky-preference-content-wrapper" data-cky-tag="detail-description" style="color:#d0d0d0"> <p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.</p><p>The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. </p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.</p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.</p> </div><div class="cky-accordion-wrapper" data-cky-tag="detail-categories"> <div class="cky-accordion" id="ckyDetailCategorynecessary"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Necessary" data-cky-tag="detail-category-title" style="color:#d0d0d0">Necessary</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchnecessary"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#d0d0d0"> <p>Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#d0d0d0;background-color:#2a2a2a;border-color:#474444"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryfunctional"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Functional" data-cky-tag="detail-category-title" style="color:#d0d0d0">Functional</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchfunctional"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#d0d0d0"> <p>Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#d0d0d0;background-color:#2a2a2a;border-color:#474444"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryanalytics"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Analytics" data-cky-tag="detail-category-title" style="color:#d0d0d0">Analytics</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchanalytics"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#d0d0d0"> <p>Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#d0d0d0;background-color:#2a2a2a;border-color:#474444"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryperformance"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Performance" data-cky-tag="detail-category-title" style="color:#d0d0d0">Performance</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchperformance"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#d0d0d0"> <p>Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#d0d0d0;background-color:#2a2a2a;border-color:#474444"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryadvertisement"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Advertisement" data-cky-tag="detail-category-title" style="color:#d0d0d0">Advertisement</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchadvertisement"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#d0d0d0"> <p>Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#d0d0d0;background-color:#2a2a2a;border-color:#474444"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div> </div></div><div class="cky-footer-wrapper"> <span class="cky-footer-shadow"></span> <div class="cky-prefrence-btn-wrapper" data-cky-tag="detail-buttons"> <button class="cky-btn cky-btn-reject" aria-label="Reject All" data-cky-tag="detail-reject-button" style="color:#d0d0d0;background-color:transparent;border-color:#d0d0d0"> Reject All </button> <button class="cky-btn cky-btn-preferences" aria-label="Save My Preferences" data-cky-tag="detail-save-button" style="color:#d0d0d0;background-color:transparent;border-color:#d0d0d0"> Save My Preferences </button> <button class="cky-btn cky-btn-accept" aria-label="Accept All" data-cky-tag="detail-accept-button" style="color:#d0d0d0;background-color:#2081e2;border-color:#2081e2"> Accept All </button> </div></div></div></div></script> <!-- Theme: Newspaper by tagDiv.com 2024 Version: 12.6.8 (rara) Deploy mode: deploy uid: 67ea44e23e8b9 --> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/wplegalpages/admin/js/jquery.cookie.min.js?ver=3.2.8" id="wp-legal-pages-jquery-cookie-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js?ver=12.6.8" id="td-site-min-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdPostImages.js?ver=12.6.8" id="tdPostImages-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSocialSharing.js?ver=12.6.8" id="tdSocialSharing-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdModalPostImages.js?ver=12.6.8" id="tdModalPostImages-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-includes/js/underscore.min.js?ver=1.13.7" id="underscore-js"></script> <script type="text/javascript" id="tds_js_files_for_front-js-extra"> /* <![CDATA[ */ var tds_js_globals = {"wpRestNonce":"1b1e5ad1ed","wpRestUrl":"https:\/\/alhalnews.com\/wp-json\/","permalinkStructure":"\/%category%\/%postname%\/"}; /* ]]> */ </script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-subscription/assets/js/js_files_for_front.min.js?ver=1.6.2" id="tds_js_files_for_front-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-cloud-library/assets/js/js_files_for_front.min.js?ver=b33652f2535d2f3812f59e306e26300d" id="tdb_js_files_for_front-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdToTop.js?ver=12.6.8" id="tdToTop-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdLoginMobile.js?ver=12.6.8" id="tdLoginMobile-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdAjaxSearch.js?ver=12.6.8" id="tdDatei18n-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdPopupModal.js?ver=12.6.8" id="tdPopupModal-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-cloud-library/assets/js/tdbMenu.js?ver=b33652f2535d2f3812f59e306e26300d" id="tdbMenu-js"></script> <script type="text/javascript" src="https://alhalnews.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSmartSidebar.js?ver=12.6.8" id="tdSmartSidebar-js"></script> <!-- JS generated by theme --> <script type="text/javascript" id="td-generated-footer-js"> /* global jQuery:{} */ jQuery().ready( function () { var blockUid = 'tdi_20', $blockObj = jQuery('.tdi_20'), modalUid = 'td_m_30de', $modalObj = $blockObj.find('.tdm-popup-modal-wrap'), show_modal_in_composer = 'yes'; if( $modalObj.length && modalUid !== '' ) { var tdPopupModalItem = new tdPopupModal.item(), $triggerBtnObj = $blockObj.find('> .tds-button > a.tdm-btn'); // modal uid tdPopupModalItem.uid = modalUid; // block uid tdPopupModalItem.blockUid = blockUid; // modal object tdPopupModalItem.modalObj = $modalObj; // modal object tdPopupModalItem.closeModals = []; // modal open position tdPopupModalItem._modal_open_position = 'over-screen'; // modal open disable site scroll tdPopupModalItem._site_scroll = '1'; // check to see whether we are in composer or not // we are not in composer // trigger button object if( $triggerBtnObj.length ) { tdPopupModalItem.triggerBtnObj = $triggerBtnObj; } // trigger types tdPopupModalItem._modal_trigger_types = {"page_load":{"modal_open_when_others_close":false,"modal_open_delay":5000,"modal_close_after":0,"modal_prevent_open":21600000}}; // modal content load tdPopupModalItem._modal_content_load = ''; tdPopupModal.addItem(tdPopupModalItem); } }); /* global jQuery:{} */ jQuery(document).ready( function () { var tdbMenuItem = new tdbMenu.item(); tdbMenuItem.blockUid = 'tdi_56'; tdbMenuItem.jqueryObj = jQuery('.tdi_56'); tdbMenuItem.blockAtts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"25%","image_size":"td_485x360","modules_category":"","show_excerpt":"none","show_com":"none","show_date":"","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-right","menu_id":"51","text_color":"var(--crypto-gaming-pro-light-gray-text)","tds_menu_active1-text_color_h":"var(--crypto-gaming-pro-accent)","f_elem_font_family":"406","f_elem_font_weight":"700","f_elem_font_transform":"none","f_elem_font_size":"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9","tds_menu_active1-line_width":"0","elem_padd":"0","elem_space":"eyJhbGwiOiI1NiIsImxhbmRzY2FwZSI6IjQ0IiwicG9ydHJhaXQiOiIzOCJ9","main_sub_icon_size":"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9","main_sub_icon_space":"eyJhbGwiOiI4IiwicG9ydHJhaXQiOiI2IiwibGFuZHNjYXBlIjoiNyJ9","mm_width":"100vw ","mm_padd":"eyJhbGwiOiI0MHB4IiwibGFuZHNjYXBlIjoiMzBweCIsInBvcnRyYWl0IjoiMjBweCJ9","mm_sub_padd":"eyJhbGwiOiI0MHB4IDAgIiwibGFuZHNjYXBlIjoiMzBweCAwICIsInBvcnRyYWl0IjoiMjBweCAwICJ9","f_elem_font_line_height":"eyJhbGwiOiI5NHB4IiwibGFuZHNjYXBlIjoiODBweCIsInBvcnRyYWl0IjoiNjJweCJ9","mm_align_screen":"yes","mm_bg":"var(--crypto-gaming-pro-lighter-bg)","mm_border_size":"0","mm_subcats_bg":"rgba(19,19,19,0)","title_txt":"var(--crypto-gaming-pro-white)","title_txt_hover":"var(--crypto-gaming-pro-accent)","mm_elem_padd":"eyJhbGwiOiI3cHggMjVweCA3cHggNDBweCIsImxhbmRzY2FwZSI6IjVweCAyMHB4IDVweCAzMHB4IiwicG9ydHJhaXQiOiIzcHggMTVweCAzcHggMjBweCJ9","mm_sub_width":"eyJhbGwiOiIzMDAiLCJsYW5kc2NhcGUiOiIyMDAiLCJwb3J0cmFpdCI6IjE1MCJ9","mm_elem_border":"0","mm_elem_border_a":"0","mm_subcats_border_color":"rgba(255,255,255,0.15)","mm_elem_color":"var(--crypto-gaming-pro-light-gray-text)","mm_elem_color_a":"var(--crypto-gaming-pro-white)","mm_elem_bg_a":"var(--crypto-gaming-pro-accent)","f_mm_sub_font_family":"406","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9","f_mm_sub_font_weight":"700","mm_elem_space":"eyJhbGwiOiIyIiwibGFuZHNjYXBlIjoiMSIsInBvcnRyYWl0IjoiMCJ9","modules_gap":"eyJhbGwiOiI0MCIsImxhbmRzY2FwZSI6IjMwIiwicG9ydHJhaXQiOiIyMCJ9","image_height":"55","f_title_font_family":"704","f_title_font_weight":"600","f_title_font_size":"eyJhbGwiOiIyNCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNSJ9","f_title_font_line_height":"1.2","meta_padding":"eyJhbGwiOiIyNXB4IDAgMCIsImxhbmRzY2FwZSI6IjIwcHggMCAwIiwicG9ydHJhaXQiOiIxNXB4IDAgMCJ9","f_cat_font_family":"406","f_meta_font_family":"406","f_cat_font_size":"eyJhbGwiOiIxMSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI5In0=","f_meta_font_size":"eyJhbGwiOiIxMSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI5In0=","f_cat_font_line_height":"1.2","f_meta_font_line_height":"1.2","cat_bg":"rgba(32,129,226,0)","cat_bg_hover":"rgba(32,129,226,0)","cat_txt":"var(--crypto-gaming-pro-accent)","date_txt":"var(--crypto-gaming-pro-dark-gray-text)","modules_category_padding":"3px 0 0","modules_category_margin":"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=","art_title":"eyJhbGwiOiIwIDAgOHB4IiwibGFuZHNjYXBlIjoiMCAwIDZweCIsInBvcnRyYWl0IjoiMCAwIDRweCJ9","cat_txt_hover":"var(--crypto-gaming-pro-white)","pag_border_radius":"2","pag_border_width":"0","pag_bg":"rgba(175,175,175,0.25)","pag_h_bg":"var(--crypto-gaming-pro-accent)","pag_space":"eyJhbGwiOiI0MCIsImxhbmRzY2FwZSI6IjMwIiwicG9ydHJhaXQiOiIyMCJ9","pag_icons_size":"eyJhbGwiOiI5IiwibGFuZHNjYXBlIjoiOCIsInBvcnRyYWl0IjoiNyJ9","pag_padding":"1px 0 0","f_meta_font_weight":"700","f_cat_font_weight":"700","sub_first_left":"eyJhbGwiOiItMjgiLCJsYW5kc2NhcGUiOiItMjIiLCJwb3J0cmFpdCI6Ii0xOSJ9","sub_elem_padd":"eyJhbGwiOiI3cHggMjVweCIsImxhbmRzY2FwZSI6IjZweCAyMHB4IiwicG9ydHJhaXQiOiI1cHggMTVweCJ9","sub_bg_color":"var(--crypto-gaming-pro-lighter-bg)","sub_text_color":"var(--crypto-gaming-pro-light-gray-text)","tds_menu_sub_active1-sub_text_color_h":"var(--crypto-gaming-pro-accent)","f_sub_elem_font_family":"406","f_sub_elem_font_size":"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9","f_sub_elem_font_line_height":"1.4","f_sub_elem_font_weight":"700","sub_elem_space":"eyJhbGwiOiIyIiwibGFuZHNjYXBlIjoiMSIsInBvcnRyYWl0IjoiMCJ9","sub_shadow_shadow_size":"12","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"#000000","mm_shadow_shadow_color":"#000000","mm_shadow_shadow_size":"12","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOi0xLCJwb3J0cmFpdCI6IjAiLCJsYW5kc2NhcGUiOiIwIn0=","sub_padd":"eyJsYW5kc2NhcGUiOiIxMnB4IDAiLCJwb3J0cmFpdCI6IjEwcHggMCJ9","more":"yes","show_mega_cats":"yes","excl_txt":"Exclusive","f_excl_font_family":"406","f_excl_font_size":"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9","f_excl_font_weight":"700","excl_padd":"eyJhbGwiOiIycHggNXB4IiwibGFuZHNjYXBlIjoiMnB4IDNweCAxcHgiLCJwb3J0cmFpdCI6IjFweCAzcHgifQ==","excl_radius":"2","excl_margin":"eyJwb3J0cmFpdCI6IjAgNHB4IDAgMCIsImxhbmRzY2FwZSI6IjAgNnB4IDAgMCJ9","f_cat_font_transform":"","excl_bg":"#333333","rev_txt":"var(--crypto-gaming-pro-dark-gray-text)","review_size":"eyJhbGwiOiIxIiwibGFuZHNjYXBlIjoiMC41IiwicG9ydHJhaXQiOiIwLjIifQ==","review_space":"eyJhbGwiOiIwIDAgMCAxMnB4IiwibGFuZHNjYXBlIjoiMCAwIDAgMTBweCIsInBvcnRyYWl0IjoiMCAwIDAgOHB4In0=","mc1_title_tag":"h2","block_type":"tdb_header_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","float_right":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_rest_top":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","mm_subcats_posts_limit":"4","mm_child_cats":"","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_sub_border":"","mm_sub_inline":"","mm_elem_order":"name","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","all_modules_space":"36","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","excl_show":"inline-block","all_excl_border":"","all_excl_border_style":"solid","excl_color":"","excl_color_h":"","excl_bg_h":"","all_excl_border_color":"","excl_border_color_h":"","f_excl_font_header":"","f_excl_font_title":"Label text","f_excl_font_settings":"","f_excl_font_line_height":"","f_excl_font_style":"","f_excl_font_transform":"","f_excl_font_spacing":"","f_excl_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_distance":"","show_pagination":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","tds_menu_active":"tds_menu_active1","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_font_spacing":"","f_elem_":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_offset_horizontal":"","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_offset_vertical":"","mm_shadow_shadow_spread":"","mm_elem_bg":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_line_height":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","ex_txt":"","com_bg":"","com_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_border":"","pag_h_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","tdc_css":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_56","tdc_css_class":"tdi_56","tdc_css_class_style":"tdi_56_rand_style","context":""}'; tdbMenuItem.isMegaMenuFull = true; tdbMenuItem.megaMenuLoadType = ''; tdbMenu.addItem(tdbMenuItem); }); </script> <script>var td_res_context_registered_atts=["style_general_header_logo","style_general_header_align","style_general_mobile_search","style_general_mobile_menu","style_general_popup_modal","style_general_column_title","style_general_list","style_general_button","style_general_header_menu_in_more","style_general_header_menu","style_general_single_title","style_general_title_single","style_bg_space","style_general_single_categories","style_general_inline_text","style_general_post_meta","style_general_single_date","style_general_separator","style_general_bg_featured_image","style_general_single_content","style_general_list_menu","style_specific_list_menu_vertical","style_specific_list_menu_accordion","style_specific_list_menu_horizontal","style_general_search_form"];</script> </body> </html> <!-- Page cached by LiteSpeed Cache 6.5.4 on 2025-03-31 00:31:46 -->