Tuesday, July 1, 2025
No menu items!
No menu items!
HomeOthersAccessible SVGs: Perfect Patterns For Screen Reader Users

Accessible SVGs: Perfect Patterns For Screen Reader Users

While Scalable Vector Graphics (SVGs) were first introduced in the late 90s, they have seen a massive resurgence in popularity in the last decade due to their extreme flexibility, high fidelity, and relative lightness in a world where bandwidth and performance matter more than ever. Advancements in JavaScript and the introduction of CSS media queries such @prefers-color-scheme and @prefers-reduced-motion have extended the functionality of SVGs way beyond their initial use case of simply displaying vector images on a website.

As SVG technology advances, our understanding of how we design and develop SVGs needs to advance as well. Part of that advancement includes considering the impact of such designs and code on actual humans, aka our end users.

This article outlines twelve distinct SVG patterns found “in the wild” and each alternative description announced when accessed by different combinations of operating systems, browsers, and screen readers.

Of course, the following examples are not meant to be an exhaustive list of all the possible patterns being used in the digital sphere, but they do highlight some of the more popular or ubiquitous SVG patterns you might encounter. Continue reading to discover which SVG patterns you should avoid and which patterns are the most inclusive!

Basic Alternative Descriptions Using The Tag

The first group of four patterns utilizes the tag linking out to an SVG file. This is a good choice for basic, uncomplicated images on your website, app, or other digital product. While the drawback to using this pattern is that you cannot easily control many visual elements or animations as an inline SVG, this pattern should render lighter and faster images overall and allow for easier maintenance on SVGs that you use in multiple locations.

Pattern #1: + alt="[words]"

<img role="img" class="fox" alt="What does the fox say?" src="https://upload.wikimedia.org/wikipedia/commons/3/39/Toicon-icon-fandom-howl.svg">

Pattern #2: + role="img" + alt="[words]"

<img role="img" class="fox" alt="What does the fox say?" src="https://upload.wikimedia.org/wikipedia/commons/3/39/Toicon-icon-fandom-howl.svg">

Pattern #3: + role="img" + aria-label="[words]"

<img role="img" class="fox" aria-label="What does the fox say?" src="https://upload.wikimedia.org/wikipedia/commons/3/39/Toicon-icon-fandom-howl.svg">

Pattern #4: + role="img" + aria-labelledby="[ID]"

<p id="caption1" class="visually-hidden">What does the fox say?</p>
<img role="img" aria-labelledby="caption1" class="fox" src="https://upload.wikimedia.org/wikipedia/commons/3/39/Toicon-icon-fandom-howl.svg">

Basic Alternative Descriptions Using The Tag

The second group of four patterns utilizes the tag with an inline SVG file. Although adding the SVG code directly into the markup could potentially make the page a bit slower to load, that minor inefficiency will be offset by having more control over the visual elements or animations of your images. By adding your SVG to the HTML directly, you also have more options when it comes to providing image information to your screen reader users.

Pattern #5: + role="img" + </code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/b1be2146-4ed3-4dd0-b8aa-88ea70112d03/5-accessible-svg-pattern-comparison.png"></p> <pre><code><svg role="img" ...> <title>What does the fox say?</title> [design code] </svg> </code></pre> <h4>Pattern #6: <code></code> + <code>role="img"</code> + <code></code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/1db57e58-5d73-4fe5-b15f-23fec976b17d/6-accessible-svg-pattern-comparison.png"></p> <div> <pre><code><svg role="img" ...> <text class="visually-hidden" font-size="0">What does the fox say?</text> [design code] </svg> </code></pre> </div> <h4>Pattern #7: <code></code> + <code>role="img"</code> + <code><title></code> + <code>aria-describedby="[ID]"</code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/533e5f3a-d0b0-4e89-8642-fd355fb557f8/7-accessible-svg-pattern-comparison.png"></p> <pre><code><svg role="img" aria-describedby="fox7" ...> <title id="fox7">What does the fox say?</title> [design code] </svg> </code></pre> <h4>Pattern #8: <code></code> + <code>role="img"</code> + <code><title></code> + <code>aria-labelledby="[ID]"</code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/03c90ea4-a060-4ea4-a073-0fff9f08a12c/8-accessible-svg-pattern-comparison.png"></p> <pre><code><svg role="img" aria-labelledby="fox8" ...> <title id="fox8">What does the fox say?</title> [design code] </svg> </code></pre> <h3>Extended Alternative Descriptions Using The <code></code> Tag</h3> <p>The last group of four patterns utilizes the <code></code> tag with an inline SVG file, much like the second group. However, in this case, we are extending the simple alternative descriptions with additional information due to the complexity of the image.</p> <p>This would be a good pattern choice for more complicated images that need more explanation. However, it is important to keep in mind that there are some people with disabilities — like cognitive disorders — who might benefit from having this additional image information readily available on the screen instead of buried in the SVG code.</p> <p>Depending on the type and amount of information you need to add to your SVG, you might consider taking a different approach altogether.</p> <h4>Pattern #9: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/b20fc272-e17f-4feb-ade6-a3b918b6d535/9-accessible-svg-pattern-comparison.png"></p> <div> <pre><code><svg role="img" ...> <title>What does the fox say?</title> <text class="visually-hidden" font-size="0">Will we ever know?</text> [design code] </svg> </code></pre> </div> <h4>Pattern #10: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/b62bed3c-3367-4e55-a4a1-06b350a5d239/10-accessible-svg-pattern-comparison.png"></p> <pre><code><svg role="img" ...> <title>What does the fox say?</title> <desc>Will we ever know?</desc> [design code] </svg> </code></pre> <h4>Pattern #11: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code> + <code>aria-labelledby="[ID]"</code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/b4061618-7397-4957-a887-bb259347df0b/11-accessible-svg-pattern-comparison.png"></p> <pre><code><svg role="img" aria-labelledby="fox11 description11" ...> <title id="fox11">What does the fox say?</title> <desc id="description11">Will we ever know?</desc> [design code] </svg> </code></pre> <h4>Pattern #12: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code> + <code>aria-describedby="[ID]"</code></h4> <p><img decoding="async" src="https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/23280c8b-5499-42b9-8628-728172b891e2/12-accessible-svg-pattern-comparison.png"></p> <pre><code><svg role="img" aria-describedby="fox12 description12" ...> <title id="fox12">What does the fox say?</title> <desc id="description12">Will we ever know?</desc> [design code] </svg> </code></pre> <p>See the full CodePen <a target="_blank" href="https://codepen.io/smashingmag/pen/dyvvbKj" rel="noopener">Accessible SVG Pattern Comparison (Fox Version)</a> by <a target="_blank" href="https://codepen.io/cariefisher/pen/QWpjded" rel="noopener">Carie Fisher</a>.</p> <h3>SVG Pattern Winners And Losers</h3> <p>By running various screen readers on different combinations of operating systems and browsers, we see definite patterns emerging in the <a target="_blank" href="https://www.smashingmagazine.com/#testing-results" rel="noopener">final results</a> table. There are some <strong>clear SVG pattern winners and losers</strong>, plus a few patterns somewhere in the middle that you could implement as long as you are aware of, and can accept their limitations. Looking over the results table, we can conclude the following:</p> <h4>Basic Alternative Descriptions Using The <code></code> Tag (Group 1)</h4> <h5>Best In Show</h5> <ul> <li><strong>Pattern 2</strong>: <code> + role="img"</code> + <code>alt="[words]"</code></li> <li><strong>Pattern 3</strong>: <code></code> + <code>role="img"</code> + <code>aria-label="[words]"</code></li> </ul> <h5>Use Caution</h5> <ul> <li><strong>Pattern 4</strong>: <code></code> + <code>role="img"</code> + <code>aria-labelledby="[ID]"</code></li> </ul> <h5>Not Recommended</h5> <ul> <li><strong>Pattern 1</strong>: <code></code> + <code>alt="[words]"</code></li> </ul> <h4>Basic Alternative Descriptions Using The <code></code> Tag (Group 2)</h4> <h5>Best In Show</h5> <ul> <li><strong>Pattern 5</strong>: <code></code> + <code>role="img"</code> + <code><title></code></li> <li><strong>Pattern 8</strong>: <code></code> + <code>role="img"</code> + <code><title></code> + <code>aria-labelledby="[ID]"</code></li> </ul> <h5>Use Caution</h5> <ul> <li><strong>Pattern 7</strong>: <code></code> + <code>role="img"</code> + <code><title></code> + <code>aria-describedby="[ID]"</code></li> </ul> <h5>Not Recommended</h5> <ul> <li><strong>Pattern 6</strong>: <code></code> + <code>role="img"</code> + <code></code></li> </ul> <h4>Extended Alternative Descriptions Using The <code></code> Tag (Group 3)</h4> <h5>Best In Show</h5> <ul> <li><strong>Pattern 11</strong>: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code> + <code>aria-labelledby="[ID]"</code></li> </ul> <p><strong>Note</strong>: <em>While this pattern is not perfect as it repeated alternative descriptions, it did not ignore any of the elements in the testing, unlike the “use caution” patterns.</em></p> <h4>Use Caution</h4> <ul> <li><strong>Pattern 9</strong>: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code></li> <li><strong>Pattern 10</strong>: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code></li> <li><strong>Pattern 12</strong>: <code></code> + <code>role="img"</code> + <code><title></code> + <code></code> + <code>aria-describedby="[ID]"</code></li> </ul> <h5>Not Recommended</h5> <ul> <li>None of the patterns in this group completely failed the tests.</li> </ul> <h3>Testing Results</h3> <p>See the Pen <a target="_blank" href="https://codepen.io/smashingmag/pen/YzZQBwG" rel="noopener">Testing Results</a> by <a target="_blank" href="https://codepen.io/cariefisher/pen/QWpjded" rel="noopener">Carie Fisher</a>.</p> <h3>Wrapping Up</h3> <p>It is important to note that part of interpreting the results of the SVG pattern tests is understanding that creators of each screen reader have a <strong>recommended browser(s)</strong> that they fully support. This doesn’t mean you shouldn’t or couldn’t use a screen reader on a different browser, this just means that if you do, the results may not be as accurate as if you used the recommended one(s). </p> <p>The pattern testing for this article did include some <strong>combinations of browsers and screen readers</strong> that may fall into the “fringe” category, but there are also notes on which <a target="_blank" href="https://dequeuniversity.com/screenreaders/" rel="noopener">combinations of operating systems, browsers, and screen readers</a> are recommended for your own testing. The results of these tests should help you make the best SVG pattern decision possible, based on your pattern needs and constraints.</p> <p>A reminder that before you settle on a pattern, please make sure you know the basics of <a target="_blank" href="https://www.smashingmagazine.com/2020/05/accessible-images/" rel="noopener">how and when to create accessible images</a> and that you fully understand the <a target="_blank" href="https://www.w3.org/WAI/tutorials/images/" rel="noopener">required alternative information needed</a> for the different image types.</p> <p>If you need additional help deciding on which pattern to use for your environment, check out the article <a target="_blank" href="https://www.smashingmagazine.com/2021/03/good-better-best-untangling-complex-world-accessible-patterns/" rel="noopener">Good, Better, Best: Untangling The Complex World Of Accessible Patterns</a> to help you navigate the tricky waters of accessible patterns. Armed with all of this information and just a little bit of effort, your SVGs are well on their way to being more inclusive to all. </p> <p><em>Editor’s note</em>: You can learn <strong>best practices on accessibility</strong> with Carie in her upcoming online workshop on <strong><a target="_blank" href="https://smashingconf.com/online-workshops/workshops/carie-fisher" rel="noopener">Accessible Front-End Patterns</a></strong> — with guidelines, testing tools, assistive technology and inclusive design patterns. Online, and live.</p> </div></div><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_71 td_separator_solid td_separator_center"><span style="border-color:#EBEBEB;border-width:1px;width:100%;"></span> <style scoped>.td_block_separator{width:100%;align-items:center;margin-bottom:38px;padding-bottom:10px}.td_block_separator span{position:relative;display:block;margin:0 auto;width:100%;height:1px;border-top:1px solid #EBEBEB}.td_separator_align_left span{margin-left:0}.td_separator_align_right span{margin-right:0}.td_separator_dashed span{border-top-style:dashed}.td_separator_dotted span{border-top-style:dotted}.td_separator_double span{height:3px;border-bottom:1px solid #EBEBEB}.td_separator_shadow>span{position:relative;height:20px;overflow:hidden;border:0;color:#EBEBEB}.td_separator_shadow>span>span{position:absolute;top:-30px;left:0;right:0;margin:0 auto;height:13px;width:98%;border-radius:100%}html :where([style*='border-width']){border-style:none}.tdi_71{margin-top:28px!important;margin-bottom:20px!important}</style></div><div class="td_block_wrap tdb_single_post_share tdi_72 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_72" > <style>.tdi_72 .td-post-sharing-visible{align-items:flex-start}</style><div id="tdi_72" class="td-post-sharing tdb-block td-ps-bg td-ps-notext td-post-sharing-style1 "><div class="td-post-sharing-visible"><div class="td-social-sharing-button td-social-sharing-button-js td-social-handler td-social-share-text"> <div class="td-social-but-icon"><i class="td-icon-share"></i></div> <div class="td-social-but-text">Share</div> </div><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-facebook" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.webmastersgallery.com%2Funcategorized%2Faccessible-svgs-perfect-patterns-for-screen-reader-users%2F" title="Facebook" ><div class="td-social-but-icon"><i class="td-icon-facebook"></i></div><div class="td-social-but-text">Facebook</div></a><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-twitter" href="https://twitter.com/intent/tweet?text=Accessible+SVGs%3A+Perfect+Patterns+For+Screen+Reader+Users&url=https%3A%2F%2Fwww.webmastersgallery.com%2Funcategorized%2Faccessible-svgs-perfect-patterns-for-screen-reader-users%2F&via=Webmasters+Gallery" title="Twitter" ><div class="td-social-but-icon"><i class="td-icon-twitter"></i></div><div class="td-social-but-text">Twitter</div></a><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-pinterest" href="https://pinterest.com/pin/create/button/?url=https://www.webmastersgallery.com/uncategorized/accessible-svgs-perfect-patterns-for-screen-reader-users/&media=&description=Accessible+SVGs%3A+Perfect+Patterns+For+Screen+Reader+Users" title="Pinterest" ><div class="td-social-but-icon"><i class="td-icon-pinterest"></i></div><div class="td-social-but-text">Pinterest</div></a><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-whatsapp" href="https://api.whatsapp.com/send?text=Accessible+SVGs%3A+Perfect+Patterns+For+Screen+Reader+Users %0A%0A https://www.webmastersgallery.com/uncategorized/accessible-svgs-perfect-patterns-for-screen-reader-users/" title="WhatsApp" ><div class="td-social-but-icon"><i class="td-icon-whatsapp"></i></div><div class="td-social-but-text">WhatsApp</div></a></div><div class="td-social-sharing-hidden"><ul class="td-pulldown-filter-list"></ul><a class="td-social-sharing-button td-social-handler td-social-expand-tabs" href="#" data-block-uid="tdi_72" title="More"> <div class="td-social-but-icon"><i class="td-icon-plus td-social-expand-tabs-icon"></i></div> </a></div></div></div><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_74 td_separator_solid td_separator_center"><span style="border-color:#EBEBEB;border-width:1px;width:100%;"></span> <style scoped>.tdi_74{margin-bottom:30px!important}@media (max-width:767px){.tdi_74{margin-top:-7px!important}}</style></div><div class="td_block_wrap tdb_single_next_prev tdi_75 td-animation-stack td-pb-border-top td_block_template_1" data-td-block-uid="tdi_75" > <style>.tdi_75{margin-bottom:43px!important}</style> <style>.tdb_single_next_prev{*zoom:1}.tdb_single_next_prev:before,.tdb_single_next_prev:after{display:table;content:'';line-height:0}.tdb_single_next_prev:after{clear:both}.tdb-next-post{font-family:var(--td_default_google_font_2,'Roboto',sans-serif);width:48%;float:left;transform:translateZ(0);-webkit-transform:translateZ(0);min-height:1px;line-height:1}.tdb-next-post span{display:block;font-size:12px;color:#747474;margin-bottom:7px}.tdb-next-post a{font-size:15px;color:#222;line-height:21px;-webkit-transition:color 0.2s ease;transition:color 0.2s ease}.tdb-next-post a:hover{color:var(--td_theme_color,#4db2ec)}.tdb-post-next{margin-left:2%;text-align:right}.tdb-post-prev{margin-right:2%}.tdb-post-next .td-image-container{display:inline-block}.tdi_75 .td-module-container{display:flex;flex-direction:column}.tdi_75 .tdb-post-next .td-module-container{align-items:flex-end}.tdi_75 .td-image-container{display:block;order:0}.ie10 .tdi_75 .next-prev-title,.ie11 .tdi_75 .next-prev-title{flex:auto}@media (min-width:1019px) and (max-width:1140px){}@media (min-width:768px) and (max-width:1018px){}@media (max-width:767px){}</style><div class="tdb-block-inner td-fix-index"><div class="tdb-next-post tdb-next-post-bg tdb-post-prev"><span>Previous article</span><div class="td-module-container"><div class="next-prev-title"><a href="https://www.webmastersgallery.com/uncategorized/how-to-boost-your-negotiation-skill-via-clm-software/">How to Boost Your Negotiation Skill via CLM Software</a></div></div></div><div class="tdb-next-post tdb-next-post-bg tdb-post-next"><span>Next article</span><div class="td-module-container"><div class="next-prev-title"><a href="https://www.webmastersgallery.com/uncategorized/start-using-a-smart-dam-and-image-optimization-stack/">Start Using a Smart DAM and Image Optimization Stack</a></div></div></div></div></div><div class="td_block_wrap td_flex_block_1 tdi_77 td_with_ajax_pagination td-pb-border-top td_block_template_1 td_flex_block" data-td-block-uid="tdi_77" > <style>.tdi_77 .td-image-wrap{padding-bottom:70%}.tdi_77 .entry-thumb{background-position:center 50%}.tdi_77 .td-module-container{flex-direction:column;border-color:#eaeaea!important}.tdi_77 .td-image-container{display:block;order:0}.ie10 .tdi_77 .td-module-meta-info,.ie11 .tdi_77 .td-module-meta-info{flex:auto}body .tdi_77 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_77 .td-module-meta-info{border-color:#eaeaea}.tdi_77 .td_module_wrap{width:33.33333333%;float:left;padding-left:10px;padding-right:10px;padding-bottom:10px;margin-bottom:10px}.rtl .tdi_77 .td_module_wrap{float:right}.tdi_77 .td_block_inner{margin-left:-10px;margin-right:-10px}.tdi_77 .td-module-container:before{bottom:-10px;border-color:#eaeaea}.tdi_77 .td-post-vid-time{display:block}.tdi_77 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_77 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_77 .td-excerpt{display:none;column-count:1;column-gap:48px}.tdi_77 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_77 .td-read-more{display:none}.tdi_77 .td-author-date{display:inline}.tdi_77 .td-post-author-name{display:none}.tdi_77 .td-post-date,.tdi_77 .td-post-author-name span{display:none}.tdi_77 .entry-review-stars{display:inline-block}.tdi_77 .td-icon-star,.tdi_77 .td-icon-star-empty,.tdi_77 .td-icon-star-half{font-size:15px}.tdi_77 .td-module-comments{display:none}.tdi_77 .td_module_wrap:nth-child(3n+1){clear:both}.tdi_77 .td_module_wrap:nth-last-child(-n+3){margin-bottom:0;padding-bottom:0}.tdi_77 .td_module_wrap:nth-last-child(-n+3) .td-module-container:before{display:none}.tdi_77 .entry-title{font-size:13px!important;line-height:1.4!important;font-weight:500!important}html:not([class*='ie']) .tdi_77 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:1019px) and (max-width:1140px){.tdi_77 .td_module_wrap{padding-bottom:10px;margin-bottom:10px;clear:none!important;padding-bottom:10px!important;margin-bottom:10px!important}.tdi_77 .td-module-container:before{bottom:-10px}.tdi_77 .td_module_wrap:nth-child(3n+1){clear:both!important}.tdi_77 .td_module_wrap:nth-last-child(-n+3){margin-bottom:0!important;padding-bottom:0!important}.tdi_77 .td_module_wrap .td-module-container:before{display:block!important}.tdi_77 .td_module_wrap:nth-last-child(-n+3) .td-module-container:before{display:none!important}}@media (min-width:768px) and (max-width:1018px){.tdi_77 .td_module_wrap{padding-left:7.5px;padding-right:7.5px;padding-bottom:7.5px;margin-bottom:7.5px;clear:none!important;padding-bottom:7.5px!important;margin-bottom:7.5px!important}.tdi_77 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px}.tdi_77 .td-module-container:before{bottom:-7.5px}.tdi_77 .td-video-play-ico{width:24px;height:24px;font-size:24px}.tdi_77 .td_module_wrap:nth-child(3n+1){clear:both!important}.tdi_77 .td_module_wrap:nth-last-child(-n+3){margin-bottom:0!important;padding-bottom:0!important}.tdi_77 .td_module_wrap .td-module-container:before{display:block!important}.tdi_77 .td_module_wrap:nth-last-child(-n+3) .td-module-container:before{display:none!important}.tdi_77 .entry-title{font-size:12px!important}}@media (max-width:767px){.tdi_77 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_77 .td-image-container,.ie11 .tdi_77 .td-image-container{flex:0 0 auto}.tdi_77 .td-module-container{flex-direction:row}.ie10 .tdi_77 .td-module-meta-info,.ie11 .tdi_77 .td-module-meta-info{flex:1}.tdi_77 .td-module-meta-info{margin:0 0 0 16px;padding:0px}.tdi_77 .td_module_wrap{width:100%;float:left;padding-left:7.5px;padding-right:7.5px;padding-bottom:13px;margin-bottom:13px;padding-bottom:13px!important;margin-bottom:13px!important}.rtl .tdi_77 .td_module_wrap{float:right}.tdi_77 .td_block_inner{margin-left:-7.5px;margin-right:-7.5px}.tdi_77 .td-module-container:before{bottom:-13px}.tdi_77 .td-video-play-ico{width:24px;height:24px;font-size:24px}.tdi_77 .td-post-date,.tdi_77 .td-post-author-name span{display:inline-block}.tdi_77 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_77 .td_module_wrap .td-module-container:before{display:block!important}.tdi_77 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_77 .entry-title{margin:0 0 6px 0;font-size:14px!important}}</style><script>var block_tdi_77 = new tdBlock(); block_tdi_77.id = "tdi_77"; block_tdi_77.atts = '{"title_tag":"div","modules_on_row":"eyJhbGwiOiIzMy4zMzMzMzMzMyUiLCJwaG9uZSI6IjEwMCUifQ==","limit":"3","modules_category":"image","show_btn":"none","show_excerpt":"none","ajax_pagination":"next_prev","sort":"","category_id":"_related_cat","f_title_font_size":"eyJwaG9uZSI6IjE0IiwiYWxsIjoiMTMiLCJwb3J0cmFpdCI6IjEyIn0=","f_title_font_line_height":"eyJwaG9uZSI6IjEuNCIsImFsbCI6IjEuNCJ9","modules_gap":"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTUiLCJwaG9uZSI6IjE1In0=","show_com":"none","show_date":"eyJhbGwiOiJub25lIiwicGhvbmUiOiJpbmxpbmUtYmxvY2sifQ==","show_author":"none","image_height":"70","f_title_font_weight":"500","all_modules_space":"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSIsInBob25lIjoiMjYifQ==","custom_title":"RELATED ARTICLES","image_floated":"eyJwaG9uZSI6ImZsb2F0X2xlZnQifQ==","image_width":"eyJwaG9uZSI6IjMwIn0=","meta_info_align":"","meta_margin":"eyJwaG9uZSI6IjAgMCAwIDE2cHgifQ==","meta_padding":"eyJwaG9uZSI6IjAifQ==","video_icon":"eyJwb3J0cmFpdCI6IjI0IiwicGhvbmUiOiIyNCJ9","image_size":"td_485x360","art_title":"eyJwaG9uZSI6IjAgMCA2cHggMCJ9","block_type":"td_flex_block_1","separator":"","custom_url":"","block_template_id":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","post_ids":"-4101707","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_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":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","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_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_":"","meta_info_horiz":"layout-default","meta_width":"","meta_space":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category_margin":"","modules_category_padding":"","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_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","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_family":"","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_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","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":"","title_txt":"","title_txt_hover":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_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_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","tdc_css":"","td_column_number":2,"header_color":"","color_preset":"","border_top":"","class":"tdi_77","tdc_css_class":"tdi_77","tdc_css_class_style":"tdi_77_rand_style","live_filter":"cur_post_same_categories","live_filter_cur_post_id":4101707,"live_filter_cur_post_parent_id":0}'; block_tdi_77.td_column_number = "2"; block_tdi_77.block_type = "td_flex_block_1"; block_tdi_77.post_count = "3"; block_tdi_77.found_posts = "11279"; block_tdi_77.header_color = ""; block_tdi_77.ajax_pagination_infinite_stop = ""; block_tdi_77.max_num_pages = "3760"; tdBlocksArray.push(block_tdi_77); </script><div class="td-block-title-wrap"><div class="block-title td-block-title"><span class="td-pulldown-size">RELATED ARTICLES</span></div></div><div id=tdi_77 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-image"> <div class="td-image-container"> <a href="https://www.webmastersgallery.com/category/design/" class="td-post-category" >Designing</a> <div class="td-module-thumb"><a href="https://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" class="td-image-wrap " title="Korean Air Takes Off with a Fresh New Look" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_485x360.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" title="Korean Air Takes Off with a Fresh New Look">Korean Air Takes Off with a Fresh New Look</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-25T12:23:00+00:00" >March 25, 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-image"> <div class="td-image-container"> <a href="https://www.webmastersgallery.com/category/design/" class="td-post-category" >Designing</a> <div class="td-module-thumb"><a href="https://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" class="td-image-wrap " title="Support Logical Shorthands in CSS" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_485x360.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" title="Support Logical Shorthands in CSS">Support Logical Shorthands in CSS</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T14:06:19+00:00" >March 24, 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-image"> <div class="td-image-container"> <a href="https://www.webmastersgallery.com/category/design/" class="td-post-category" >Designing</a> <div class="td-module-thumb"><a href="https://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" class="td-image-wrap " title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_485x360.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry">The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T12:38:00+00:00" >March 24, 2025</time></span> </span> </div> </div> </div> </div> </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_77" data-td_block_id="tdi_77"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#" class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_77" data-td_block_id="tdi_77"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div> <script> var tdb_login_sing_in_shortcode="on"; </script> <div class="td_block_wrap tdb_single_comments tdi_78 tdb-comm-layout1 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_78" > <style>.tdb_single_comments input[type=text]{min-height:34px;height:auto}.tdb_single_comments .comments,.tdb_single_comments .comment-respond:last-child,.tdb_single_comments .form-submit{margin-bottom:0}.is-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tdb-comm-layout3 form,.tdb-comm-layout5 form{display:flex;flex-wrap:wrap}.tdb-comm-layout3 .td-form-comment,.tdb-comm-layout5 .td-form-comment,.tdb-comm-layout3 .form-submit,.tdb-comm-layout5 .form-submit{flex:0 0 100%;order:1}.tdb-comm-layout3 .td-form-author,.tdb-comm-layout3 .td-form-email,.tdb-comm-layout3 .td-form-url{flex:0 0 32%}.tdb-comm-layout5 .td-form-author,.tdb-comm-layout5 .td-form-email{flex:0 0 49%}.tdb-comm-layout5 .td-form-url{flex:0 0 100%}.tdb-comm-leave_reply_top .comments{display:flex;flex-direction:column}.tdb-comm-leave_reply_top .td-comments-title{order:0;margin-bottom:14px}.tdb-comm-leave_reply_top .comment-respond .form-submit{order:1;margin-bottom:21px}.tdb-comm-leave_reply_top .comment-list{order:2}.tdb-comm-leave_reply_top .comment-pagination{order:3}.tdi_78 .comment-link{display:inline-block}.tdi_78 .comment{border-bottom-style:dashed}.tdi_78 .comment .children{border-top-style:dashed}@media (min-width:767px){.tdb-comm-layout2 form,.tdb-comm-layout4 form{margin:0 -10px}.tdb-comm-layout2 .logged-in-as,.tdb-comm-layout4 .logged-in-as,.tdb-comm-layout2 .comment-form-input-wrap,.tdb-comm-layout4 .comment-form-input-wrap,.tdb-comm-layout2 .form-submit,.tdb-comm-layout4 .form-submit,.tdb-comm-layout2 .comment-respond p,.tdb-comm-layout4 .comment-respond p{padding:0 10px}.tdb-comm-layout2 .td-form-author,.tdb-comm-layout2 .td-form-email{float:left;width:33.3333%}.tdb-comm-layout2 .td-form-url{width:33.3333%}.tdb-comm-layout2 .td-form-url{float:left}.tdb-comm-layout4 .td-form-author,.tdb-comm-layout4 .td-form-email{float:left;width:50%}.tdb-comm-layout3 .td-form-author,.tdb-comm-layout5 .td-form-author,.tdb-comm-layout3 .td-form-email{margin-right:2%}}@media (max-width:767px){.tdb-comm-layout3 .td-form-author,.tdb-comm-layout3 .td-form-email,.tdb-comm-layout3 .td-form-url,.tdb-comm-layout5 .td-form-author,.tdb-comm-layout5 .td-form-email{flex:0 0 100%}}</style><div class="tdb-block-inner td-fix-index"><div class="comments" id="comments"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">LEAVE A REPLY</h3><p class="must-log-in td-login-comment"><a class="td-login-modal-js" data-effect="mpf-td-login-effect" href="#login-form">Log in to leave a comment</a></p> </div><!-- #respond --> </div></div></div></div></div><div class="vc_column tdi_80 wpb_column vc_column_container tdc-column td-pb-span4 td-is-sticky"> <style scoped>.tdi_80{vertical-align:baseline}.tdi_80>.wpb_wrapper,.tdi_80>.wpb_wrapper>.tdc-elements{display:block}.tdi_80>.wpb_wrapper>.tdc-elements{width:100%}.tdi_80>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_80>.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="td_block_wrap td_flex_block_1 tdi_82 td_with_ajax_pagination td-pb-border-top td_block_template_1 td_flex_block" data-td-block-uid="tdi_82" > <style>.tdi_82 .td-image-wrap{padding-bottom:70%}.tdi_82 .entry-thumb{background-position:center 50%}.tdi_82 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_82 .td-image-container,.ie11 .tdi_82 .td-image-container{flex:0 0 auto}.tdi_82 .td-module-container{flex-direction:row;border-color:#eaeaea!important}.ie10 .tdi_82 .td-module-meta-info,.ie11 .tdi_82 .td-module-meta-info{flex:1}body .tdi_82 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_82 .td-module-meta-info{padding:0 0 0 13px;border-color:#eaeaea}.tdi_82 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:15px;margin-bottom:15px}.tdi_82 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_82 .td-module-container:before{bottom:-15px;border-color:#eaeaea}.tdi_82 .td-post-vid-time{display:block}.tdi_82 .td-post-category:not(.td-post-extra-category){display:none}.tdi_82 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_82 .td-excerpt{display:none;column-count:1;column-gap:48px}.tdi_82 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_82 .td-read-more{display:none}.tdi_82 .td-author-date{display:inline}.tdi_82 .td-post-author-name{display:none}.tdi_82 .entry-review-stars{display:inline-block}.tdi_82 .td-icon-star,.tdi_82 .td-icon-star-empty,.tdi_82 .td-icon-star-half{font-size:15px}.tdi_82 .td-module-comments{display:none}.tdi_82 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_82 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_82 .td-block-title a,.tdi_82 .td-block-title span{text-transform:uppercase!important}.tdi_82 .entry-title{font-size:14px!important;line-height:1.4!important;font-weight:500!important}html:not([class*='ie']) .tdi_82 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:1019px) and (max-width:1140px){.tdi_82 .td_module_wrap{padding-bottom:15px;margin-bottom:15px;padding-bottom:15px!important;margin-bottom:15px!important}.tdi_82 .td-module-container:before{bottom:-15px}.tdi_82 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_82 .td_module_wrap .td-module-container:before{display:block!important}.tdi_82 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}}@media (min-width:768px) and (max-width:1018px){.tdi_82 .td_module_wrap{width:100%;float:left;padding-left:10px;padding-right:10px;padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.rtl .tdi_82 .td_module_wrap{float:right}.tdi_82 .td_block_inner{margin-left:-10px;margin-right:-10px}.tdi_82 .td-module-container:before{bottom:-10px}.tdi_82 .td-post-date,.tdi_82 .td-post-author-name span{display:none}.tdi_82 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_82 .td_module_wrap .td-module-container:before{display:block!important}.tdi_82 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_82 .entry-title{font-size:12px!important}}@media (max-width:767px){.tdi_82 .td-module-meta-info{padding:0 0 0 16px}.tdi_82 .td_module_wrap{width:100%;float:left;padding-bottom:15px;margin-bottom:15px;padding-bottom:15px!important;margin-bottom:15px!important}.rtl .tdi_82 .td_module_wrap{float:right}.tdi_82 .td-module-container:before{bottom:-15px}.tdi_82 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_82 .td_module_wrap .td-module-container:before{display:block!important}.tdi_82 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}}</style><script>var block_tdi_82 = new tdBlock(); block_tdi_82.id = "tdi_82"; block_tdi_82.atts = '{"modules_on_row":"eyJwb3J0cmFpdCI6IjEwMCUiLCJwaG9uZSI6IjEwMCUifQ==","image_size":"","image_floated":"float_left","image_width":"30","image_height":"70","show_btn":"none","show_excerpt":"none","show_com":"none","show_author":"none","show_cat":"none","limit":"4","meta_padding":"eyJhbGwiOiIwIDAgMCAxM3B4IiwicGhvbmUiOiIwIDAgMCAxNnB4In0=","f_title_font_size":"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIifQ==","f_title_font_line_height":"1.4","f_title_font_weight":"500","all_modules_space":"eyJhbGwiOiIzMCIsInBvcnRyYWl0IjoiMjAifQ==","category_id":"","modules_gap":"eyJwb3J0cmFpdCI6IjIwIn0=","show_date":"eyJwb3J0cmFpdCI6Im5vbmUifQ==","custom_title":"Most Popular","ajax_pagination":"load_more","sort":"","f_header_font_transform":"uppercase","block_type":"td_flex_block_1","separator":"","custom_url":"","block_template_id":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","post_ids":"-4101707","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_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":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","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_":"","meta_info_align":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","meta_space":"","art_title":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","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_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_family":"","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_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","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":"","title_txt":"","title_txt_hover":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_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_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","tdc_css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_82","tdc_css_class":"tdi_82","tdc_css_class_style":"tdi_82_rand_style"}'; block_tdi_82.td_column_number = "1"; block_tdi_82.block_type = "td_flex_block_1"; block_tdi_82.post_count = "4"; block_tdi_82.found_posts = "11530"; block_tdi_82.header_color = ""; block_tdi_82.ajax_pagination_infinite_stop = ""; block_tdi_82.max_num_pages = "2883"; tdBlocksArray.push(block_tdi_82); </script><div class="td-block-title-wrap"><h4 class="block-title td-block-title"><span class="td-pulldown-size">Most Popular</span></h4></div><div id=tdi_82 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://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" class="td-image-wrap " title="Korean Air Takes Off with a Fresh New Look" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_696x0.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" title="Korean Air Takes Off with a Fresh New Look">Korean Air Takes Off with a Fresh New Look</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-25T12:23:00+00:00" >March 25, 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://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" class="td-image-wrap " title="Support Logical Shorthands in CSS" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_696x0.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" title="Support Logical Shorthands in CSS">Support Logical Shorthands in CSS</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T14:06:19+00:00" >March 24, 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://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" class="td-image-wrap " title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_696x0.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry">The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T12:38:00+00:00" >March 24, 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://www.webmastersgallery.com/uncategorized/top-9-admin-templates-for-2025/" rel="bookmark" class="td-image-wrap " title="Top 9 Admin Templates for 2025" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_696x0.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/top-9-admin-templates-for-2025/" rel="bookmark" title="Top 9 Admin Templates for 2025">Top 9 Admin Templates for 2025</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T10:57:20+00:00" >March 24, 2025</time></span> </span> </div> </div> </div> </div> </div><div class="td-load-more-wrap"><a href="#" class="td_ajax_load_more td_ajax_load_more_js" aria-label="Load more" id="next-page-tdi_82" data-td_block_id="tdi_82">Load more<i class="td-load-more-icon td-icon-font td-icon-menu-right"></i></a></div></div><div class="td_block_wrap vc_wp_recentcomments tdi_83 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_83" > <style>.tdi_83 .recentcomments{margin:0px!important;padding:0 0 15px!important;border-bottom-color:#eaeaea}.tdi_83 .td-block-title a,.tdi_83 .td-block-title span{text-transform:uppercase!important}.tdi_83 .comment-author-link span,.tdi_83 .comment-author-link a{font-family:Open Sans!important}.tdi_83 .recentcomments>a:last-child{font-family:Open Sans!important}</style><div class="td-block-title-wrap"><h4 class="block-title td-block-title"><span class="td-pulldown-size">Recent Comments</span></h4></div><div id=tdi_83 class="td_wp_recentcomments td_block_inner td-column-1 "></div></div> <!-- ./block --></div></div></div></div></div></div> <span class="td-page-meta" itemprop="author" itemscope itemtype="https://schema.org/Person"><meta itemprop="name" content=""><meta itemprop="url" content="https://www.webmastersgallery.com/author/"></span><meta itemprop="datePublished" content="2021-05-26T13:20:00+00:00"><meta itemprop="dateModified" content="2021-05-26T13:20:00+00:00"><meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="https://www.webmastersgallery.com/uncategorized/accessible-svgs-perfect-patterns-for-screen-reader-users/"/><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://www.webmastersgallery.com/uncategorized/accessible-svgs-perfect-patterns-for-screen-reader-users/"></span><meta itemprop="name" content="Webmasters Gallery"></span><meta itemprop="headline" content="Accessible SVGs: Perfect Patterns For Screen Reader Users"><span class="td-page-meta" itemprop="image" itemscope itemtype="https://schema.org/ImageObject"><meta itemprop="url" content="https://www.webmastersgallery.com/wp-content/plugins/td-cloud-library/assets/images/td_meta_replacement.png"><meta itemprop="width" content="1068"><meta itemprop="height" content="580"></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_84" class="tdc-zone"><div class="tdc_zone tdi_85 wpb_row td-pb-row" > <style scoped>.tdi_85{min-height:0}</style><div id="tdi_86" class="tdc-row stretch_row"><div class="vc_row tdi_87 wpb_row td-pb-row tdc-element-style" > <style scoped>.tdi_87,.tdi_87 .tdc-columns{min-height:0}.tdi_87,.tdi_87 .tdc-columns{display:block}.tdi_87 .tdc-columns{width:100%}.tdi_87:before,.tdi_87:after{display:table}.tdi_87{padding-top:54px!important;padding-bottom:20px!important;position:relative}.tdi_87 .td_block_wrap{text-align:left}@media (max-width:767px){.tdi_87{padding-top:40px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_87{padding-top:44px!important}}</style> <div class="tdi_86_rand_style td-element-style" ><div class="td-element-style-before"><style>.tdi_86_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;background-image:url("")!important;opacity:0.1!important;background-size:cover!important;background-position:center top!important}</style></div><style>.tdi_86_rand_style{background-color:#111111!important}</style></div><div class="vc_column tdi_89 wpb_column vc_column_container tdc-column td-pb-span12"> <style scoped>.tdi_89{vertical-align:baseline}.tdi_89>.wpb_wrapper,.tdi_89>.wpb_wrapper>.tdc-elements{display:block}.tdi_89>.wpb_wrapper>.tdc-elements{width:100%}.tdi_89>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_89>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="vc_row_inner tdi_91 vc_row vc_inner wpb_row td-pb-row" > <style scoped>.tdi_91{position:relative!important;top:0;transform:none;-webkit-transform:none}.tdi_91,.tdi_91 .tdc-inner-columns{display:block}.tdi_91 .tdc-inner-columns{width:100%}</style><div class="vc_column_inner tdi_93 wpb_column vc_column_container tdc-inner-column td-pb-span4"> <style scoped>.tdi_93{vertical-align:baseline}.tdi_93 .vc_column-inner>.wpb_wrapper,.tdi_93 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_93 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="td_block_wrap td_flex_block_1 tdi_94 td-pb-border-top td_block_template_2 td_flex_block" data-td-block-uid="tdi_94" > <style>.td_block_template_2.widget>ul>li{margin-left:0!important}.td_block_template_2 .td-block-title{font-size:17px;font-weight:500;margin-top:0;margin-bottom:16px;line-height:31px;text-align:left}.td_block_template_2 .td-block-title>*{color:var(--td_text_header_color,#000)}.td_block_template_2 .td-related-title a{padding:0 20px 0 0}@media (max-width:767px){.td_block_template_2 .td-related-title a{font-size:15px}}.td_block_template_2 .td-related-title .td-cur-simple-item{color:var(--td_theme_color,#4db2ec)}.td-theme-wrap .tdi_94 .td-block-title>*,.td-theme-wrap .tdi_94 .td-pulldown-filter-link:hover,.td-theme-wrap .tdi_94 .td-subcat-item a:hover,.td-theme-wrap .tdi_94 .td-subcat-item .td-cur-simple-item,.td-theme-wrap .tdi_94 .td-subcat-dropdown:hover .td-subcat-more span,.td-theme-wrap .tdi_94 .td-subcat-dropdown:hover .td-subcat-more i{color:#ffffff}.td-theme-wrap .tdi_94 .td-subcat-dropdown ul:after{background-color:#ffffff}.td-theme-wrap .tdi_94 .td_module_wrap:hover .entry-title a,.td-theme-wrap .tdi_94 .td_quote_on_blocks,.td-theme-wrap .tdi_94 .td-opacity-cat .td-post-category:hover,.td-theme-wrap .tdi_94 .td-opacity-read .td-read-more a:hover,.td-theme-wrap .tdi_94 .td-opacity-author .td-post-author-name a:hover,.td-theme-wrap .tdi_94 .td-instagram-user a{color:#ffffff}.td-theme-wrap .tdi_94 .td-next-prev-wrap a:hover,.td-theme-wrap .tdi_94 .td-load-more-wrap a:hover{background-color:#ffffff;border-color:#ffffff}.td-theme-wrap .tdi_94 .td-read-more a,.td-theme-wrap .tdi_94 .td-weather-information:before,.td-theme-wrap .tdi_94 .td-weather-week:before,.td-theme-wrap .tdi_94 .td-exchange-header:before,.td-theme-wrap .td-footer-wrapper .tdi_94 .td-post-category,.td-theme-wrap .tdi_94 .td-post-category:hover{background-color:#ffffff}@media (max-width:767px){.tdi_94{margin-bottom:40px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_94{margin-bottom:20px!important}}</style> <style>.tdi_94 .td-image-wrap{padding-bottom:70%}.tdi_94 .entry-thumb{background-position:center 50%}.tdi_94 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_94 .td-image-container,.ie11 .tdi_94 .td-image-container{flex:0 0 auto}.tdi_94 .td-module-container{flex-direction:row;border-color:#eaeaea!important}.ie10 .tdi_94 .td-module-meta-info,.ie11 .tdi_94 .td-module-meta-info{flex:1}body .tdi_94 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_94 .td-module-meta-info{padding:0 0 0 16px;border-color:#eaeaea}.tdi_94 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:13px;margin-bottom:13px}.tdi_94 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_94 .td-module-container:before{bottom:-13px;border-color:#eaeaea}.tdi_94 .td-video-play-ico{width:24px;height:24px;font-size:24px}.tdi_94 .td-post-vid-time{display:block}.tdi_94 .td-post-category:not(.td-post-extra-category){display:none}.tdi_94 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_94 .td-excerpt{display:none;column-count:1;column-gap:48px}.tdi_94 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_94 .td-read-more{display:none}.tdi_94 .td-author-date{display:inline}.tdi_94 .td-post-author-name{display:none}.tdi_94 .entry-review-stars{display:inline-block;color:#ffffff}.tdi_94 .td-icon-star,.tdi_94 .td-icon-star-empty,.tdi_94 .td-icon-star-half{font-size:15px}.tdi_94 .td-module-comments{display:none}.tdi_94 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_94 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_94 .td-module-title a{color:#ffffff}.tdi_94 .td_module_wrap:hover .td-module-title a{color:#4db2ec!important}.tdi_94 .td-block-title a,.tdi_94 .td-block-title span{font-size:18px!important}.tdi_94 .entry-title{font-size:14px!important;line-height:1.4!important;font-weight:500!important}html:not([class*='ie']) .tdi_94 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:1019px) and (max-width:1140px){.tdi_94 .td_module_wrap{padding-bottom:13px;margin-bottom:13px;padding-bottom:13px!important;margin-bottom:13px!important}.tdi_94 .td-module-container:before{bottom:-13px}.tdi_94 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_94 .td_module_wrap .td-module-container:before{display:block!important}.tdi_94 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}}@media (min-width:768px) and (max-width:1018px){.tdi_94 .td-module-meta-info{padding:0 0 0 13px}.tdi_94 .td_module_wrap{width:100%;float:left;padding-left:10px;padding-right:10px;padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.rtl .tdi_94 .td_module_wrap{float:right}.tdi_94 .td_block_inner{margin-left:-10px;margin-right:-10px}.tdi_94 .td-module-container:before{bottom:-10px}.tdi_94 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_94 .td_module_wrap .td-module-container:before{display:block!important}.tdi_94 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_94 .entry-title{font-size:12px!important}}@media (max-width:767px){.tdi_94 .td_module_wrap{width:100%;float:left;padding-bottom:13px;margin-bottom:13px;padding-bottom:13px!important;margin-bottom:13px!important}.rtl .tdi_94 .td_module_wrap{float:right}.tdi_94 .td-module-container:before{bottom:-13px}.tdi_94 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_94 .td_module_wrap .td-module-container:before{display:block!important}.tdi_94 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}}</style><script>var block_tdi_94 = new tdBlock(); block_tdi_94.id = "tdi_94"; block_tdi_94.atts = '{"modules_on_row":"eyJwb3J0cmFpdCI6IjEwMCUiLCJwaG9uZSI6IjEwMCUifQ==","image_size":"td_218x150","image_floated":"float_left","image_width":"30","image_height":"70","show_btn":"none","show_excerpt":"none","show_com":"none","show_author":"none","show_cat":"none","meta_padding":"eyJhbGwiOiIwIDAgMCAxNnB4IiwicG9ydHJhaXQiOiIwIDAgMCAxM3B4In0=","f_title_font_size":"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIifQ==","f_title_font_line_height":"1.4","f_title_font_weight":"500","all_modules_space":"eyJhbGwiOiIyNiIsInBvcnRyYWl0IjoiMjAiLCJwaG9uZSI6IjI2In0=","category_id":"","modules_gap":"eyJwb3J0cmFpdCI6IjIwIn0=","show_date":"","limit":"3","custom_title":"EDITOR PICKS","block_template_id":"td_block_template_2","f_header_font_size":"18","f_header_font_weight":"","header_text_color":"#ffffff","title_txt":"#ffffff","sort":"","title_txt_hover":"#4db2ec","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9","rev_txt":"#ffffff","post_ids":"-4101707","video_icon":"24","block_type":"td_flex_block_1","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_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":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","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_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_":"","meta_info_align":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","meta_space":"","art_title":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","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_line_height":"","f_header_font_style":"","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_family":"","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_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","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_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","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_94","tdc_css_class":"tdi_94","tdc_css_class_style":"tdi_94_rand_style"}'; block_tdi_94.td_column_number = "1"; block_tdi_94.block_type = "td_flex_block_1"; block_tdi_94.post_count = "3"; block_tdi_94.found_posts = "11530"; block_tdi_94.header_color = ""; block_tdi_94.ajax_pagination_infinite_stop = ""; block_tdi_94.max_num_pages = "3844"; tdBlocksArray.push(block_tdi_94); </script><div class="td-block-title-wrap"><h4 class="td-block-title"><span class="td-pulldown-size">EDITOR PICKS</span></h4></div><div id=tdi_94 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://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" class="td-image-wrap " title="Korean Air Takes Off with a Fresh New Look" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_218x150.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" title="Korean Air Takes Off with a Fresh New Look">Korean Air Takes Off with a Fresh New Look</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-25T12:23:00+00:00" >March 25, 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://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" class="td-image-wrap " title="Support Logical Shorthands in CSS" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_218x150.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" title="Support Logical Shorthands in CSS">Support Logical Shorthands in CSS</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T14:06:19+00:00" >March 24, 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://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" class="td-image-wrap " title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_218x150.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry">The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T12:38:00+00:00" >March 24, 2025</time></span> </span> </div> </div> </div> </div> </div></div></div></div></div><div class="vc_column_inner tdi_96 wpb_column vc_column_container tdc-inner-column td-pb-span4"> <style scoped>.tdi_96{vertical-align:baseline}.tdi_96 .vc_column-inner>.wpb_wrapper,.tdi_96 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_96 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="td_block_wrap td_flex_block_1 tdi_97 td-pb-border-top td_block_template_2 td_flex_block" data-td-block-uid="tdi_97" > <style>.td-theme-wrap .tdi_97 .td-block-title>*,.td-theme-wrap .tdi_97 .td-pulldown-filter-link:hover,.td-theme-wrap .tdi_97 .td-subcat-item a:hover,.td-theme-wrap .tdi_97 .td-subcat-item .td-cur-simple-item,.td-theme-wrap .tdi_97 .td-subcat-dropdown:hover .td-subcat-more span,.td-theme-wrap .tdi_97 .td-subcat-dropdown:hover .td-subcat-more i{color:#ffffff}.td-theme-wrap .tdi_97 .td-subcat-dropdown ul:after{background-color:#ffffff}.td-theme-wrap .tdi_97 .td_module_wrap:hover .entry-title a,.td-theme-wrap .tdi_97 .td_quote_on_blocks,.td-theme-wrap .tdi_97 .td-opacity-cat .td-post-category:hover,.td-theme-wrap .tdi_97 .td-opacity-read .td-read-more a:hover,.td-theme-wrap .tdi_97 .td-opacity-author .td-post-author-name a:hover,.td-theme-wrap .tdi_97 .td-instagram-user a{color:#ffffff}.td-theme-wrap .tdi_97 .td-next-prev-wrap a:hover,.td-theme-wrap .tdi_97 .td-load-more-wrap a:hover{background-color:#ffffff;border-color:#ffffff}.td-theme-wrap .tdi_97 .td-read-more a,.td-theme-wrap .tdi_97 .td-weather-information:before,.td-theme-wrap .tdi_97 .td-weather-week:before,.td-theme-wrap .tdi_97 .td-exchange-header:before,.td-theme-wrap .td-footer-wrapper .tdi_97 .td-post-category,.td-theme-wrap .tdi_97 .td-post-category:hover{background-color:#ffffff}@media (max-width:767px){.tdi_97{margin-bottom:48px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_97{margin-bottom:20px!important}}</style> <style>.tdi_97 .td-image-wrap{padding-bottom:70%}.tdi_97 .entry-thumb{background-position:center 50%}.tdi_97 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_97 .td-image-container,.ie11 .tdi_97 .td-image-container{flex:0 0 auto}.tdi_97 .td-module-container{flex-direction:row;border-color:#eaeaea!important}.ie10 .tdi_97 .td-module-meta-info,.ie11 .tdi_97 .td-module-meta-info{flex:1}body .tdi_97 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_97 .td-module-meta-info{padding:0 0 0 16px;border-color:#eaeaea}.tdi_97 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:13px;margin-bottom:13px}.tdi_97 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_97 .td-module-container:before{bottom:-13px;border-color:#eaeaea}.tdi_97 .td-video-play-ico{width:24px;height:24px;font-size:24px}.tdi_97 .td-post-vid-time{display:block}.tdi_97 .td-post-category:not(.td-post-extra-category){display:none}.tdi_97 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_97 .td-excerpt{display:none;column-count:1;column-gap:48px}.tdi_97 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_97 .td-read-more{display:none}.tdi_97 .td-author-date{display:inline}.tdi_97 .td-post-author-name{display:none}.tdi_97 .entry-review-stars{display:inline-block;color:#ffffff}.tdi_97 .td-icon-star,.tdi_97 .td-icon-star-empty,.tdi_97 .td-icon-star-half{font-size:15px}.tdi_97 .td-module-comments{display:none}.tdi_97 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_97 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_97 .td-module-title a{color:#ffffff}.tdi_97 .td_module_wrap:hover .td-module-title a{color:#4db2ec!important}.tdi_97 .td-block-title a,.tdi_97 .td-block-title span{font-size:18px!important}.tdi_97 .entry-title{font-size:14px!important;line-height:1.4!important;font-weight:500!important}html:not([class*='ie']) .tdi_97 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:1019px) and (max-width:1140px){.tdi_97 .td_module_wrap{padding-bottom:13px;margin-bottom:13px;padding-bottom:13px!important;margin-bottom:13px!important}.tdi_97 .td-module-container:before{bottom:-13px}.tdi_97 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_97 .td_module_wrap .td-module-container:before{display:block!important}.tdi_97 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}}@media (min-width:768px) and (max-width:1018px){.tdi_97 .td-module-meta-info{padding:0 0 0 13px}.tdi_97 .td_module_wrap{width:100%;float:left;padding-left:10px;padding-right:10px;padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.rtl .tdi_97 .td_module_wrap{float:right}.tdi_97 .td_block_inner{margin-left:-10px;margin-right:-10px}.tdi_97 .td-module-container:before{bottom:-10px}.tdi_97 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_97 .td_module_wrap .td-module-container:before{display:block!important}.tdi_97 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_97 .entry-title{font-size:12px!important}}@media (max-width:767px){.tdi_97 .td_module_wrap{width:100%;float:left;padding-bottom:13px;margin-bottom:13px;padding-bottom:13px!important;margin-bottom:13px!important}.rtl .tdi_97 .td_module_wrap{float:right}.tdi_97 .td-module-container:before{bottom:-13px}.tdi_97 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_97 .td_module_wrap .td-module-container:before{display:block!important}.tdi_97 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}}</style><script>var block_tdi_97 = new tdBlock(); block_tdi_97.id = "tdi_97"; block_tdi_97.atts = '{"modules_on_row":"eyJwb3J0cmFpdCI6IjEwMCUiLCJwaG9uZSI6IjEwMCUifQ==","image_size":"td_218x150","image_floated":"float_left","image_width":"30","image_height":"70","show_btn":"none","show_excerpt":"none","show_com":"none","show_author":"none","show_cat":"none","meta_padding":"eyJhbGwiOiIwIDAgMCAxNnB4IiwicGhvbmUiOiIwIDAgMCAxNnB4IiwicG9ydHJhaXQiOiIwIDAgMCAxM3B4In0=","f_title_font_size":"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIifQ==","f_title_font_line_height":"1.4","f_title_font_weight":"500","all_modules_space":"eyJhbGwiOiIyNiIsInBvcnRyYWl0IjoiMjAiLCJwaG9uZSI6IjI2In0=","category_id":"","modules_gap":"eyJwb3J0cmFpdCI6IjIwIn0=","show_date":"","limit":"3","custom_title":"POPULAR POSTS","block_template_id":"td_block_template_2","f_header_font_size":"18","f_header_font_weight":"","header_text_color":"#ffffff","title_txt":"#ffffff","sort":"","title_txt_hover":"#4db2ec","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDgiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9","post_ids":"-4101707","rev_txt":"#ffffff","video_icon":"24","block_type":"td_flex_block_1","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_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":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","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_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_":"","meta_info_align":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","meta_space":"","art_title":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","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_line_height":"","f_header_font_style":"","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_family":"","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_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","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_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","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_97","tdc_css_class":"tdi_97","tdc_css_class_style":"tdi_97_rand_style"}'; block_tdi_97.td_column_number = "1"; block_tdi_97.block_type = "td_flex_block_1"; block_tdi_97.post_count = "3"; block_tdi_97.found_posts = "11530"; block_tdi_97.header_color = ""; block_tdi_97.ajax_pagination_infinite_stop = ""; block_tdi_97.max_num_pages = "3844"; tdBlocksArray.push(block_tdi_97); </script><div class="td-block-title-wrap"><h4 class="td-block-title"><span class="td-pulldown-size">POPULAR POSTS</span></h4></div><div id=tdi_97 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://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" class="td-image-wrap " title="Korean Air Takes Off with a Fresh New Look" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_218x150.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/korean-air-takes-off-with-a-fresh-new-look/" rel="bookmark" title="Korean Air Takes Off with a Fresh New Look">Korean Air Takes Off with a Fresh New Look</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-25T12:23:00+00:00" >March 25, 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://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" class="td-image-wrap " title="Support Logical Shorthands in CSS" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_218x150.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/support-logical-shorthands-in-css/" rel="bookmark" title="Support Logical Shorthands in CSS">Support Logical Shorthands in CSS</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T14:06:19+00:00" >March 24, 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://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" class="td-image-wrap " title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_218x150.png" ></span></a></div> </div> <div class="td-module-meta-info"> <h3 class="entry-title td-module-title"><a href="https://www.webmastersgallery.com/uncategorized/the-death-of-coding-jobs-how-ai-no-code-and-corporate-greed-are-killing-the-industry/" rel="bookmark" title="The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry">The Death of Coding Jobs: How AI, No-Code, and Corporate Greed Are Killing the Industry</a></h3> <div class="td-editor-date"> <span class="td-author-date"> <span class="td-post-date"><time class="entry-date updated td-module-date" datetime="2025-03-24T12:38:00+00:00" >March 24, 2025</time></span> </span> </div> </div> </div> </div> </div></div></div></div></div><div class="vc_column_inner tdi_99 wpb_column vc_column_container tdc-inner-column td-pb-span4"> <style scoped>.tdi_99{vertical-align:baseline}.tdi_99 .vc_column-inner>.wpb_wrapper,.tdi_99 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_99 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="td_block_wrap td_block_popular_categories tdi_100 widget widget_categories td-pb-border-top td_block_template_2" data-td-block-uid="tdi_100" > <style>.td-theme-wrap .tdi_100 .td-block-title>*,.td-theme-wrap .tdi_100 .td-pulldown-filter-link:hover,.td-theme-wrap .tdi_100 .td-subcat-item a:hover,.td-theme-wrap .tdi_100 .td-subcat-item .td-cur-simple-item,.td-theme-wrap .tdi_100 .td-subcat-dropdown:hover .td-subcat-more span,.td-theme-wrap .tdi_100 .td-subcat-dropdown:hover .td-subcat-more i{color:#ffffff}.td-theme-wrap .tdi_100 .td-subcat-dropdown ul:after{background-color:#ffffff}.td-theme-wrap .tdi_100 .td_module_wrap:hover .entry-title a,.td-theme-wrap .tdi_100 .td_quote_on_blocks,.td-theme-wrap .tdi_100 .td-opacity-cat .td-post-category:hover,.td-theme-wrap .tdi_100 .td-opacity-read .td-read-more a:hover,.td-theme-wrap .tdi_100 .td-opacity-author .td-post-author-name a:hover,.td-theme-wrap .tdi_100 .td-instagram-user a{color:#ffffff}.td-theme-wrap .tdi_100 .td-next-prev-wrap a:hover,.td-theme-wrap .tdi_100 .td-load-more-wrap a:hover{background-color:#ffffff;border-color:#ffffff}.td-theme-wrap .tdi_100 .td-read-more a,.td-theme-wrap .tdi_100 .td-weather-information:before,.td-theme-wrap .tdi_100 .td-weather-week:before,.td-theme-wrap .tdi_100 .td-exchange-header:before,.td-theme-wrap .td-footer-wrapper .tdi_100 .td-post-category,.td-theme-wrap .tdi_100 .td-post-category:hover{background-color:#ffffff}@media (min-width:768px) and (max-width:1018px){.tdi_100{margin-bottom:20px!important}}</style> <style>.td_block_popular_categories{padding-bottom:0}.tdi_100 .td-cat-name{color:#ffffff}.tdi_100 .td-cat-no{color:#ffffff}.tdi_100 li:hover .td-cat-name{color:#4db2ec}.tdi_100 li:hover .td-cat-no{color:#4db2ec}.tdi_100 .td-block-title a,.tdi_100 .td-block-title span{font-size:18px!important}@media (min-width:768px) and (max-width:1018px){.tdi_100 li{font-size:13px!important;line-height:26px!important}}</style><div class="td-block-title-wrap"><h4 class="td-block-title"><span class="td-pulldown-size">POPULAR CATEGORY</span></h4></div><ul class="td-pb-padding-side"><li><a href="https://www.webmastersgallery.com/category/uncategorized/"><span class="td-cat-name">Others</span><span class="td-cat-no">11280</span></a></li><li><a href="https://www.webmastersgallery.com/category/design/"><span class="td-cat-name">Designing</span><span class="td-cat-no">6879</span></a></li><li><a href="https://www.webmastersgallery.com/category/programming/"><span class="td-cat-name">Programming</span><span class="td-cat-no">162</span></a></li><li><a href="https://www.webmastersgallery.com/category/webmaster-resources/"><span class="td-cat-name">Webmasters Resources</span><span class="td-cat-no">123</span></a></li><li><a href="https://www.webmastersgallery.com/category/tips-and-tutorials/"><span class="td-cat-name">Tips and Tutorials</span><span class="td-cat-no">45</span></a></li><li><a href="https://www.webmastersgallery.com/category/web-design/"><span class="td-cat-name">Website Design</span><span class="td-cat-no">36</span></a></li><li><a href="https://www.webmastersgallery.com/category/webmaster-tools/"><span class="td-cat-name">Webmaster Tools</span><span class="td-cat-no">20</span></a></li><li><a href="https://www.webmastersgallery.com/category/softwares/"><span class="td-cat-name">Softwares</span><span class="td-cat-no">6</span></a></li></ul></div></div></div></div></div><div class="vc_row_inner tdi_102 vc_row vc_inner wpb_row td-pb-row" > <style scoped>.tdi_102{position:relative!important;top:0;transform:none;-webkit-transform:none}.tdi_102,.tdi_102 .tdc-inner-columns{display:block}.tdi_102 .tdc-inner-columns{width:100%}</style><div class="vc_column_inner tdi_104 wpb_column vc_column_container tdc-inner-column td-pb-span12"> <style scoped>.tdi_104{vertical-align:baseline}.tdi_104 .vc_column-inner>.wpb_wrapper,.tdi_104 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_104 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}@media (min-width:768px) and (max-width:1018px){.tdi_104{margin-bottom:0px!important}}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_106 td_separator_solid td_separator_center"><span style="border-color:rgba(255,255,255,0.1);border-width:1px;width:80%;"></span> <style scoped>@media (min-width:768px) and (max-width:1018px){.tdi_106{margin-bottom:20px!important}}</style></div></div></div></div></div><div class="vc_row_inner tdi_108 vc_row vc_inner wpb_row td-pb-row" > <style scoped>.tdi_108{position:relative!important;top:0;transform:none;-webkit-transform:none}.tdi_108,.tdi_108 .tdc-inner-columns{display:block}.tdi_108 .tdc-inner-columns{width:100%}.tdi_108{padding-bottom:30px!important}.tdi_108 .td_block_wrap{text-align:left}@media (min-width:768px) and (max-width:1018px){.tdi_108{padding-bottom:20px!important}}</style><div class="vc_column_inner tdi_110 wpb_column vc_column_container tdc-inner-column td-pb-span4"> <style scoped>.tdi_110{vertical-align:baseline}.tdi_110 .vc_column-inner>.wpb_wrapper,.tdi_110 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_110 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}.tdi_110{width:25%!important}@media (max-width:767px){.tdi_110{margin-bottom:50px!important;width:100%!important}}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="td_block_wrap tdb_header_logo tdi_111 td-pb-border-top td_block_template_1 tdb-header-align" data-td-block-uid="tdi_111" > <style>.tdi_111{margin-top:37px!important}@media (min-width:768px) and (max-width:1018px){.tdi_111{margin-top:44px!important}}@media (max-width:767px){.tdi_111{margin-top:0px!important}}</style> <style>.tdi_111 .tdb-logo-a,.tdi_111 h1{flex-direction:row;align-items:flex-start;justify-content:center}.tdi_111 .tdb-logo-svg-wrap{display:block}.tdi_111 .tdb-logo-svg-wrap+.tdb-logo-img-wrap{display:none}.tdi_111 .tdb-logo-img-wrap{display:block}.tdi_111 .tdb-logo-text-tagline{margin-top:2px;margin-left:0;display:block}.tdi_111 .tdb-logo-text-title{display:block}.tdi_111 .tdb-logo-text-wrap{flex-direction:column;align-items:flex-start}.tdi_111 .tdb-logo-icon{top:0px;display:block}</style><div class="tdb-block-inner td-fix-index"><a class="tdb-logo-a" href="https://www.webmastersgallery.com/"></a></div></div> <!-- ./block --></div></div></div><div class="vc_column_inner tdi_113 wpb_column vc_column_container tdc-inner-column td-pb-span4"> <style scoped>.tdi_113{vertical-align:baseline}.tdi_113 .vc_column-inner>.wpb_wrapper,.tdi_113 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_113 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}.tdi_113{width:41.66666667%!important}@media (max-width:767px){.tdi_113{margin-bottom:50px!important;width:100%!important;justify-content:center!important;text-align:center!important}}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_column_title tdi_114 tdm-content-horiz-left td-pb-border-top td_block_template_1" data-td-block-uid="tdi_114" > <style>@media (max-width:767px){.tdi_114{justify-content:center!important;text-align:center!important}}</style> <style>.tdm_block_column_title{margin-bottom:0;display:inline-block;width:100%}</style><div class="td-block-row"><div class="td-block-span12 tdm-col"> <style>body .tdi_115 .tdm-title{color:#ffffff}.tdi_115 .tdm-title{font-size:18px!important;line-height:1!important;font-weight:700!important}</style><div class="tds-title tds-title1 td-fix-index tdi_115 "><h3 class="tdm-title tdm-title-md">ABOUT US</h3></div></div></div></div><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_116 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_116" > <style>@media (max-width:767px){.tdi_116{justify-content:center!important;text-align:center!important}}</style> <style>.tdm_block.tdm_block_inline_text{margin-bottom:0;vertical-align:top}.tdm_block.tdm_block_inline_text .tdm-descr{margin-bottom:0;-webkit-transform:translateZ(0);transform:translateZ(0)}.tdc-row-content-vert-center .tdm-inline-text-yes{vertical-align:middle}.tdc-row-content-vert-bottom .tdm-inline-text-yes{vertical-align:bottom}.tdi_116{text-align:left!important}.tdi_116 .tdm-descr{color:#eaeaea;font-size:14px!important;line-height:1.6!important}@media (min-width:768px) and (max-width:1018px){.tdi_116 .tdm-descr{font-size:13px!important}}</style><p class="tdm-descr">Newspaper is your news, entertainment, music fashion website. We provide you with the latest breaking news and videos straight from the entertainment industry.</p></div><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_117 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_117" > <style>.tdi_117{margin-top:21px!important}@media (max-width:767px){.tdi_117{justify-content:center!important;text-align:center!important}}</style> <style>.tdi_117{text-align:left!important}.tdi_117 .tdm-descr{color:#eaeaea;font-size:14px!important;line-height:1.6!important}.tdi_117 .tdm-descr a{color:#1aa4ce}@media (min-width:768px) and (max-width:1018px){.tdi_117 .tdm-descr{font-size:13px!important}}</style><p class="tdm-descr">Contact us: <a href="mailto:contact@yoursite.com">contact@yoursite.com</a></p></div></div></div></div><div class="vc_column_inner tdi_119 wpb_column vc_column_container tdc-inner-column td-pb-span4"> <style scoped>.tdi_119{vertical-align:baseline}.tdi_119 .vc_column-inner>.wpb_wrapper,.tdi_119 .vc_column-inner>.wpb_wrapper .tdc-elements{display:block}.tdi_119 .vc_column-inner>.wpb_wrapper .tdc-elements{width:100%}@media (max-width:767px){.tdi_119{justify-content:center!important;text-align:center!important}}</style><div class="vc_column-inner"><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_column_title tdi_120 tdm-content-horiz-left td-pb-border-top td_block_template_1" data-td-block-uid="tdi_120" > <style>@media (max-width:767px){.tdi_120{justify-content:center!important;text-align:center!important}}</style><div class="td-block-row"><div class="td-block-span12 tdm-col"> <style>body .tdi_121 .tdm-title{color:#ffffff}.tdi_121 .tdm-title{font-size:18px!important;line-height:1!important;font-weight:700!important}</style><div class="tds-title tds-title1 td-fix-index tdi_121 "><h3 class="tdm-title tdm-title-md">FOLLOW US</h3></div></div></div></div><div class="tdm_block td_block_wrap tdm_block_socials tdi_122 tdm-content-horiz-left td-pb-border-top td_block_template_1" data-td-block-uid="tdi_122" > <style>@media (max-width:767px){.tdi_122{justify-content:center!important;text-align:center!important}}</style> <style>.tdi_123 .tdm-social-item i{font-size:14px;vertical-align:middle;line-height:39.2px}.tdi_123 .tdm-social-item i.td-icon-linkedin,.tdi_123 .tdm-social-item i.td-icon-pinterest,.tdi_123 .tdm-social-item i.td-icon-blogger,.tdi_123 .tdm-social-item i.td-icon-vimeo{font-size:11.2px}.tdi_123 .tdm-social-item{width:39.2px;height:39.2px;margin:5px 10px 5px 0;background:rgba(255,255,255,0.03)}.tdi_123 .tdm-social-item-wrap:last-child .tdm-social-item{margin-right:0!important}.tdi_123 .tdm-social-item i,.tds-team-member2 .tdi_123.tds-social4 .tdm-social-item i{color:#ffffff}.tdi_123 .tdm-social-item-wrap:hover i,body .tds-team-member2 .tdi_123.tds-social4 .tdm-social-item-wrap:hover i{color:#4db2ec}body .tdi_123 .tdm-social-item{border:1px solid rgba(255,255,255,0.03)}.tdi_123 .tdm-social-text{display:none;margin-left:2px;margin-right:18px}@media (min-width:1019px) and (max-width:1140px){body .tdi_123 .tdm-social-item{border:1px solid rgba(255,255,255,0.03)}}@media (min-width:768px) and (max-width:1018px){.tdi_123 .tdm-social-item{width:35px;height:35px}.tdi_123 .tdm-social-item i{line-height:35px}body .tdi_123 .tdm-social-item{border:1px solid rgba(255,255,255,0.03)}}@media (max-width:767px){body .tdi_123 .tdm-social-item{border:1px solid rgba(255,255,255,0.03)}}</style><div class="tdm-social-wrapper tds-social4 tdi_123"><div class="tdm-social-item-wrap"><a href="#" title="Blogger" class="tdm-social-item"><i class="td-icon-font td-icon-blogger"></i><span style="display: none">Blogger</span></a></div><div class="tdm-social-item-wrap"><a href="#" title="Facebook" class="tdm-social-item"><i class="td-icon-font td-icon-facebook"></i><span style="display: none">Facebook</span></a></div><div class="tdm-social-item-wrap"><a href="#" title="Flickr" class="tdm-social-item"><i class="td-icon-font td-icon-flickr"></i><span style="display: none">Flickr</span></a></div><div class="tdm-social-item-wrap"><a href="#" title="Instagram" class="tdm-social-item"><i class="td-icon-font td-icon-instagram"></i><span style="display: none">Instagram</span></a></div><div class="tdm-social-item-wrap"><a href="#" title="VKontakte" class="tdm-social-item"><i class="td-icon-font td-icon-vk"></i><span style="display: none">VKontakte</span></a></div></div></div></div></div></div></div></div></div></div></div><div id="tdi_124" class="tdc-row stretch_row"><div class="vc_row tdi_125 wpb_row td-pb-row tdc-element-style" > <style scoped>.tdi_125,.tdi_125 .tdc-columns{min-height:0}.tdi_125,.tdi_125 .tdc-columns{display:block}.tdi_125 .tdc-columns{width:100%}.tdi_125:before,.tdi_125:after{display:table}.tdi_125{position:relative}.tdi_125 .td_block_wrap{text-align:left}@media (max-width:767px){.tdi_125{padding-top:6px!important;padding-bottom:6px!important}}</style> <div class="tdi_124_rand_style td-element-style" ><style>.tdi_124_rand_style{background-color:#0d0d0d!important}</style></div><div class="vc_column tdi_127 wpb_column vc_column_container tdc-column td-pb-span6"> <style scoped>.tdi_127{vertical-align:baseline}.tdi_127>.wpb_wrapper,.tdi_127>.wpb_wrapper>.tdc-elements{display:block}.tdi_127>.wpb_wrapper>.tdc-elements{width:100%}.tdi_127>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_127>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_128 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_128" > <style>.tdi_128{margin-top:2px!important;margin-bottom:0px!important;padding-top:8px!important;padding-bottom:8px!important}@media (max-width:767px){.tdi_128{margin-top:0px!important;justify-content:center!important;text-align:center!important}}</style> <style>.tdi_128{text-align:left!important}.tdi_128 .tdm-descr{color:#cccccc;font-size:12px!important;line-height:21px!important}</style><p class="tdm-descr">© Newspaper WordPress Theme by TagDiv</p></div></div></div><div class="vc_column tdi_130 wpb_column vc_column_container tdc-column td-pb-span6"> <style scoped>.tdi_130{vertical-align:baseline}.tdi_130>.wpb_wrapper,.tdi_130>.wpb_wrapper>.tdc-elements{display:block}.tdi_130>.wpb_wrapper>.tdc-elements{width:100%}.tdi_130>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_130>.wpb_wrapper{width:auto;height:auto}.tdi_130{justify-content:flex-end!important;text-align:right!important}@media (max-width:767px){.tdi_130{justify-content:center!important;text-align:center!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_block_list_menu tdi_131 td-blm-display-horizontal td-pb-border-top td_block_template_1 widget" data-td-block-uid="tdi_131" > <style>.tdi_131{margin-bottom:0px!important;padding-top:8px!important;padding-bottom:8px!important}@media(min-width:1141px){.tdi_131{display:inline-table!important}}@media (max-width:767px){.tdi_131{margin-left:16px!important;justify-content:center!important;text-align:center!important;display:inline-table!important}}@media (min-width:768px) and (max-width:1018px){.tdi_131{display:inline-table!important}}@media (min-width:1019px) and (max-width:1140px){.tdi_131{display:inline-table!important}}</style> <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_131 ul{text-align:left;justify-content:flex-start;margin:0px}body .tdi_131 ul li a{justify-content:flex-start}body .tdi_131 .td-blm-menu-item-txt{flex-grow:1}body .tdi_131 ul li{margin-right:16px}body .tdi_131 ul li:last-child{margin-right:0}body .tdi_131 a,body .tdi_131 .td-blm-sub-icon{color:#cccccc}body .tdi_131 li.current-menu-item>a,body .tdi_131 li.current-menu-ancestor>a,body .tdi_131 li.current-category-ancestor>a,body .tdi_131 li.current-page-ancestor>a,body .tdi_131 a:hover,body .tdi_131 li.current-menu-item>a>.td-blm-sub-icon,body .tdi_131 li.current-menu-ancestor>a>.td-blm-sub-icon,body .tdi_131 li.current-category-ancestor>a>.td-blm-sub-icon,body .tdi_131 li.current-page-ancestor>a>.td-blm-sub-icon,body .tdi_131 a:hover>.td-blm-sub-icon{color:#1aa4ce}body .tdi_131 li{font-size:12px!important;line-height:21px!important}</style><div class="td-block-title-wrap"></div><div id=tdi_131 class="td_block_inner td-fix-index"><div class="menu"><ul> <li id="menu-item-2" class="menu-item-2"><a><span class="td-blm-menu-item-txt"></span></a></li> <li id="menu-item-814" class="menu-item-814"><a><span class="td-blm-menu-item-txt"></span></a></li> <li id="menu-item-7545303" class="menu-item-7545303"><a><span class="td-blm-menu-item-txt"></span></a></li> </ul></div> </div></div></div></div></div></div></div></div> </div> </div> </div><!--close td-outer-wrap--> <!-- Theme: Newspaper by tagDiv.com 2025 Version: 12.7 (rara) Deploy mode: deploy uid: 68639c202f6a8 --> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.5" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/www.webmastersgallery.com\/wp-json\/", "namespace": "contact-form-7\/v1" } }; /* ]]> */ </script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.5" id="contact-form-7-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js?ver=12.7" id="td-site-min-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdPostImages.js?ver=12.7" id="tdPostImages-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSocialSharing.js?ver=12.7" id="tdSocialSharing-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdModalPostImages.js?ver=12.7" id="tdModalPostImages-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-includes/js/comment-reply.min.js?ver=6.7.2" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-cloud-library/assets/js/js_files_for_front.min.js?ver=d578089f160957352b9b4ca6d880fd8f" id="tdb_js_files_for_front-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdToTop.js?ver=12.7" id="tdToTop-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdLoginMobile.js?ver=12.7" id="tdLoginMobile-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdAjaxSearch.js?ver=12.7" id="tdDatei18n-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdLogin.js?ver=12.7" id="tdLogin-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-cloud-library/assets/js/tdbMenu.js?ver=d578089f160957352b9b4ca6d880fd8f" id="tdbMenu-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-cloud-library/assets/js/tdbSearch.js?ver=d578089f160957352b9b4ca6d880fd8f" id="tdbSearch-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdLoadingBox.js?ver=12.7" id="tdLoadingBox-js"></script> <script type="text/javascript" src="https://www.webmastersgallery.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSmartSidebar.js?ver=12.7" id="tdSmartSidebar-js"></script> <!-- JS generated by theme --> <script type="text/javascript" id="td-generated-footer-js"> jQuery().ready(function () { var blockClass = '.tdi_23'; jQuery(blockClass + '.tdb-horiz-menu-singleline > .menu-item-has-children a').click(function (e) { e.preventDefault(); }) }); /* global jQuery:{} */ jQuery(document).ready( function () { var tdbMenuItem = new tdbMenu.item(); tdbMenuItem.blockUid = 'tdi_42'; tdbMenuItem.jqueryObj = jQuery('.tdi_42'); tdbMenuItem.blockAtts = '{"mc1_title_tag":"p","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_324x400","modules_category":"image","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","inline":"yes","menu_id":"","mm_align_screen":"yes","f_elem_font_family":"","f_elem_font_size":"eyJwb3J0cmFpdCI6IjExIn0=","mm_width":"1300","mm_subcats_bg":"#ffffff","mm_elem_border_a":"0 1px 0 0","mm_elem_padd":"eyJhbGwiOiIycHggMjJweCIsInBvcnRyYWl0IjoiMCAxNHB4In0=","mm_sub_padd":"eyJhbGwiOiIxNnB4IDAiLCJwb3J0cmFpdCI6IjE0cHggMCJ9","f_title_font_size":"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9","f_title_font_line_height":"1.2","art_title":"3px 0","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","mm_child_cats":"10","mm_elem_border":"0 1px 0 0","mm_height":"eyJhbGwiOiIzNDUiLCJsYW5kc2NhcGUiOiIzMDAiLCJwb3J0cmFpdCI6IjI0MCJ9","mm_sub_width":"eyJsYW5kc2NhcGUiOiIxNjAiLCJwb3J0cmFpdCI6IjE0MCJ9","mm_padd":"eyJwb3J0cmFpdCI6IjE0In0=","modules_gap":"eyJwb3J0cmFpdCI6IjE0In0=","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTJweCJ9","f_elem_font_line_height":"eyJwb3J0cmFpdCI6IjQ4cHgifQ==","video_icon":"eyJwb3J0cmFpdCI6IjI0In0=","all_modules_space":"26","tds_menu_sub_active":"tds_menu_sub_active1","tds_menu_sub_active2-line_color":"","tds_menu_active":"tds_menu_active1","block_type":"tdb_header_menu","show_subcat":"","show_mega":"","show_mega_cats":"","mob_load":"","separator":"","width":"","more":"","float_right":"","align_horiz":"content-horiz-left","elem_space":"","main_sub_icon_size":"","main_sub_icon_space":"","main_sub_icon_align":"-1","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_first_left":"","sub_rest_top":"","sub_padd":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_padd":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","mm_subcats_posts_limit":"4","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_sub_border":"","mm_sub_inline":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","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_":"","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_padding":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_category_padding":"","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_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","text_color":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_font_weight":"","f_elem_font_transform":"","f_elem_font_spacing":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_text_color":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_size":"","sub_shadow_shadow_offset_horizontal":"","sub_shadow_shadow_offset_vertical":"","sub_shadow_shadow_spread":"","sub_shadow_shadow_color":"","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_family":"","f_sub_elem_font_size":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_weight":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_size":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_size":"","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_offset_vertical":"","mm_shadow_shadow_spread":"","mm_shadow_shadow_color":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_color_a":"","mm_elem_bg":"","mm_elem_bg_a":"","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_family":"","f_mm_sub_font_line_height":"","f_mm_sub_font_style":"","f_mm_sub_font_weight":"","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":"","title_txt":"","title_txt_hover":"","all_underline_height":"","all_underline_color":"#000","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_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_bg":"","pag_h_bg":"","pag_border":"","pag_h_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_family":"","f_title_font_style":"","f_title_font_weight":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","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":3,"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_42","tdc_css_class":"tdi_42","tdc_css_class_style":"tdi_42_rand_style","context":""}'; tdbMenuItem.isMegaMenuFull = true; tdbMenuItem.megaMenuLoadType = ''; tdbMenu.addItem(tdbMenuItem); }); jQuery().ready(function () { var tdbSearchItem = new tdbSearch.item(); //block unique ID tdbSearchItem.blockUid = 'tdi_45'; tdbSearchItem.blockAtts = '{"inline":"yes","toggle_txt_pos":"after","form_align":"content-horiz-right","results_msg_align":"content-horiz-center","image_floated":"float_left","image_width":"30","image_size":"td_324x400","show_cat":"none","show_btn":"none","show_date":"","show_review":"","show_com":"none","show_excerpt":"none","show_author":"none","art_title":"0 0 2px 0","all_modules_space":"20","tdicon":"td-icon-magnifier-big-rounded","icon_size":"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTgifQ==","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tdG9wIjoiMSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=","modules_on_row":"eyJhbGwiOiI1MCUiLCJwb3J0cmFpdCI6IjUwJSIsImxhbmRzY2FwZSI6IjUwJSJ9","meta_info_horiz":"content-horiz-left","form_width":"600","input_border":"0 0 1px 0","modules_divider":"","form_padding":"eyJwb3J0cmFpdCI6IjIwcHggMjBweCAyMHB4IiwiYWxsIjoiMzBweCJ9","arrow_color":"#ffffff","btn_bg_h":"rgba(0,0,0,0)","btn_tdicon":"td-icon-menu-right","btn_icon_pos":"after","btn_icon_size":"7","btn_icon_space":"8","f_title_font_family":"","f_cat_font_family":"","f_cat_font_transform":"uppercase","f_title_font_weight":"","f_title_font_transform":"","f_title_font_size":"13","title_txt_hover":"#4db2ec","results_limit":"6","float_block":"yes","icon_color":"#000000","results_border":"0 0 1px 0","f_title_font_line_height":"1.4","btn_color":"#000000","btn_color_h":"#4db2ec","all_underline_color":"","results_msg_color_h":"#4db2ec","image_height":"100","meta_padding":"3px 0 0 16px","modules_gap":"20","mc1_tl":"12","show_form":"yes","f_meta_font_weight":"","h_effect":"","results_msg_padding":"10px 0","f_results_msg_font_style":"normal","video_icon":"24","modules_divider_color":"","modules_border_color":"","btn_padding":"0","form_border":"0","form_shadow_shadow_offset_vertical":"3","results_padding":"0 30px 30px","btn_bg":"rgba(0,0,0,0)","icon_padding":"eyJhbGwiOjIuNCwicG9ydHJhaXQiOiIyLjYifQ==","block_type":"tdb_header_search","post_type":"","disable_trigger":"","show_results":"yes","separator":"","disable_live_search":"","exclude_pages":"","exclude_posts":"","search_section_header":"","results_section_1_title":"","results_section_1_taxonomies":"","results_section_1_level":"","results_section_2_title":"","results_section_2_taxonomies":"","results_section_2_level":"","results_section_3_title":"","results_section_3_taxonomies":"","results_section_3_level":"","results_section_search_query_terms":"","results_section_search_query_terms_title":"","results_section_search_query_terms_taxonomies":"","sec_title_space":"","sec_title_color":"","tax_space":"","tax_title_color":"","tax_title_color_h":"","f_sec_title_font_header":"","f_sec_title_font_title":"Section title text","f_sec_title_font_settings":"","f_sec_title_font_family":"","f_sec_title_font_size":"","f_sec_title_font_line_height":"","f_sec_title_font_style":"","f_sec_title_font_weight":"","f_sec_title_font_transform":"","f_sec_title_font_spacing":"","f_sec_title_":"","f_tax_title_font_title":"Taxonomy title text","f_tax_title_font_settings":"","f_tax_title_font_family":"","f_tax_title_font_size":"","f_tax_title_font_line_height":"","f_tax_title_font_style":"","f_tax_title_font_weight":"","f_tax_title_font_transform":"","f_tax_title_font_spacing":"","f_tax_title_":"","toggle_txt":"","toggle_txt_align":"0","toggle_txt_space":"","aria_label":"Search","toggle_horiz_align":"content-horiz-left","form_offset":"","form_offset_left":"","form_content_width":"","form_align_screen":"","input_placeholder":"","placeholder_travel":"0","input_padding":"","input_radius":"","btn_text":"Search","btn_aria_label":"Search","btn_icon_align":"0","btn_margin":"","btn_border":"","btn_radius":"","results_msg_border":"","mc1_title_tag":"","mc1_el":"","open_in_new_window":"","m_padding":"","modules_border_size":"","modules_border_style":"","image_alignment":"50","image_radius":"","hide_image":"","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_":"","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","art_btn":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","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":"","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","btn_title":"","btn_border_width":"","form_general_bg":"","icon_color_h":"","toggle_txt_color":"","toggle_txt_color_h":"","f_toggle_txt_font_header":"","f_toggle_txt_font_title":"Text","f_toggle_txt_font_settings":"","f_toggle_txt_font_family":"","f_toggle_txt_font_size":"","f_toggle_txt_font_line_height":"","f_toggle_txt_font_style":"","f_toggle_txt_font_weight":"","f_toggle_txt_font_transform":"","f_toggle_txt_font_spacing":"","f_toggle_txt_":"","form_bg":"","form_border_color":"","form_shadow_shadow_header":"","form_shadow_shadow_title":"Shadow","form_shadow_shadow_size":"","form_shadow_shadow_offset_horizontal":"","form_shadow_shadow_spread":"","form_shadow_shadow_color":"","input_color":"","placeholder_color":"","placeholder_opacity":"0","input_bg":"","input_border_color":"","input_shadow_shadow_header":"","input_shadow_shadow_title":"Input shadow","input_shadow_shadow_size":"","input_shadow_shadow_offset_horizontal":"","input_shadow_shadow_offset_vertical":"","input_shadow_shadow_spread":"","input_shadow_shadow_color":"","btn_icon_color":"","btn_icon_color_h":"","btn_border_color":"","btn_border_color_h":"","btn_shadow_shadow_header":"","btn_shadow_shadow_title":"Button shadow","btn_shadow_shadow_size":"","btn_shadow_shadow_offset_horizontal":"","btn_shadow_shadow_offset_vertical":"","btn_shadow_shadow_spread":"","btn_shadow_shadow_color":"","f_input_font_header":"","f_input_font_title":"Input text","f_input_font_settings":"","f_input_font_family":"","f_input_font_size":"","f_input_font_line_height":"","f_input_font_style":"","f_input_font_weight":"","f_input_font_transform":"","f_input_font_spacing":"","f_input_":"","f_placeholder_font_title":"Placeholder text","f_placeholder_font_settings":"","f_placeholder_font_family":"","f_placeholder_font_size":"","f_placeholder_font_line_height":"","f_placeholder_font_style":"","f_placeholder_font_weight":"","f_placeholder_font_transform":"","f_placeholder_font_spacing":"","f_placeholder_":"","f_btn_font_title":"Button text","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_":"","results_bg":"","results_border_color":"","results_msg_color":"","results_msg_bg":"","results_msg_border_color":"","f_results_msg_font_header":"","f_results_msg_font_title":"Text","f_results_msg_font_settings":"","f_results_msg_font_family":"","f_results_msg_font_size":"","f_results_msg_font_line_height":"","f_results_msg_font_weight":"","f_results_msg_font_transform":"","f_results_msg_font_spacing":"","f_results_msg_":"","m_bg":"","color_overlay":"","shadow_module_shadow_header":"","shadow_module_shadow_title":"Module Shadow","shadow_module_shadow_size":"","shadow_module_shadow_offset_horizontal":"","shadow_module_shadow_offset_vertical":"","shadow_module_shadow_spread":"","shadow_module_shadow_color":"","title_txt":"","all_underline_height":"","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_meta_shadow_header":"","shadow_meta_shadow_title":"Meta info shadow","shadow_meta_shadow_size":"","shadow_meta_shadow_offset_horizontal":"","shadow_meta_shadow_offset_vertical":"","shadow_meta_shadow_spread":"","shadow_meta_shadow_color":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border_hover":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","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_":"","el_class":"","block_template_id":"","td_column_number":3,"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_45","tdc_css_class":"tdi_45","tdc_css_class_style":"tdi_45_rand_style"}'; tdbSearchItem.jqueryObj = jQuery('.tdi_45'); tdbSearchItem._openSearchFormClass = 'tdb-drop-down-search-open'; tdbSearchItem._resultsLimit = '6'; tdbSearch.addItem( tdbSearchItem ); }); jQuery(window).on( 'load', function () { var block = jQuery('.tdi_65'), blockClass = '.tdi_65', blockInner = block.find('.tdb-block-inner'), blockOffsetLeft; if( block.find('audio').length > 0 ) { jQuery(blockClass + ' audio').mediaelementplayer(); } if( block.hasClass('tdb-sfi-stretch') ) { jQuery(window).resize(function () { blockOffsetLeft = block.offset().left; if( block.hasClass('tdb-sfi-stretch-left') ) { blockInner.css('margin-left', -blockOffsetLeft + 'px'); } else { blockInner.css('margin-right', -(jQuery(window).width() - (blockOffsetLeft + block.outerWidth())) + 'px'); } }); jQuery(window).resize(); } setTimeout(function () { block.css('opacity', 1); }, 500); }); </script> <script>var td_res_context_registered_atts=["style_general_mobile_menu","style_general_header_align","style_general_header_logo","style_general_mobile_search","style_general_header_date","style_general_header_user","style_general_mobile_horiz_menu","style_general_socials","style_general_header_menu","style_general_module_header","style_general_header_search","style_general_header_search_trigger_enabled","style_general_breadcrumbs","style_general_single_categories","style_general_single_title","style_general_title_single","style_bg_space","style_general_post_meta","style_general_single_author","style_general_single_date","style_general_comments_count","style_general_post_views","style_general_single_post_share","style_general_featured_image","style_general_single_content","style_general_separator","style_general_popular_categories","style_general_column_title","style_general_inline_text","style_general_list_menu","style_specific_list_menu_vertical","style_specific_list_menu_accordion","style_specific_list_menu_horizontal"];</script> </body> </html>