<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress Archives - HQ Secure Global Internet</title>
	<atom:link href="https://hqsecure.com/category/wordpress-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://hqsecure.com/category/wordpress-2/</link>
	<description>WordPress Divi Website Development</description>
	<lastBuildDate>Wed, 12 Feb 2025 23:51:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://hqsecure.com/wp-content/uploads/cropped-HQ-Secure-Global-Internet-Logo-Square-515x5151-32x32.jpg</url>
	<title>WordPress Archives - HQ Secure Global Internet</title>
	<link>https://hqsecure.com/category/wordpress-2/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Reveal Text on Hover</title>
		<link>https://hqsecure.com/a-dev-unblur-on-hover/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Fri, 07 Feb 2025 16:47:28 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tips & Tricks]]></category>
		<guid isPermaLink="false">https://hqsecure.com/?p=3275</guid>

					<description><![CDATA[<p>How to use CSS to make text appear when hovering over a div. By using the :hover pseudo-class, one can show and hide text on hover using CSS. In the demos below, I’m using the hover pseudo-class along with the background and text color attributes ...</p>
<p>The post <a href="https://hqsecure.com/a-dev-unblur-on-hover/">Reveal Text on Hover</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>How to use CSS to make text appear when hovering over a div.</h2>
<p>By using the :hover pseudo-class, one can show and hide text on hover using CSS. In the demos below, I&#8217;m using the hover pseudo-class along with the background and text color attributes.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_1 blur-text  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Hide Text Until Hover</h2>
<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s <span class="blur-text">standard dummy text</span> ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Dad Jokes</h2>
<p>If <strong>Dr. Pepper</strong> was a doctor, what kind of doctor would he be? </p>
<p>He would be a <span class="obscure-text">fizzician</span>.</p>
<p>Why do crabs never give to charity? </p>
<p>Because <span class="obscure-text">they’re shellfish.</span>.</p>
<p>Why did the elephant have three red tennis shoes and one yellow shoe?</p>
<p>Because he <span class="obscure-text">forgot to lift his leg</span>!</p>
<style type="text/css">
span.obscure-text{
 transition: all .2s ease-in;
  background: #666;
}
span.obscure-text:hover{background: transparent;}
</style></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_2">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>Text Module Content</h3>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">&lt;strong&gt;Lorem Ipsum&lt;/strong&gt; is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's &lt;span class="blur-text"&gt;standard dummy text&lt;/span&gt; ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

&lt;style type="text/css"&gt;
  span.blur-text{
transition: 0.25s filter linear;
filter: blur(8px);
}
span.blur-text:hover{filter: blur(0px);}
&lt;/style&gt;</pre>
<p>&nbsp;</div>
			</div><div class="et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>Note</h3>
<p>The CSS can be added via the Text Module&#8217;s Advanced tab.</p>
<p>Step 1) Under CSS ID &amp; Classes, add your class. In this example enter &#8220;blur-text&#8221; without the quotes.<br />
Step 2) Under custom CSS, add your CSS. In this example you would add:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">  span.blur-text{
transition: 0.25s filter linear;
filter: blur(8px);
}
span.blur-text:hover{filter: blur(0px);}</pre>
<p>&nbsp;</div>
			</div><div class="et_pb_module et_pb_gallery et_pb_gallery_0  et_pb_bg_layout_light et_pb_gallery_grid">
				<div class="et_pb_gallery_items et_post_gallery clearfix" data-per_page="4"><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_0"><div class="et_pb_gallery_image landscape">
					<a href="https://hqsecure.com/wp-content/uploads/Add-CSS-Class.webp" title="Add-CSS-Class">
					<img fetchpriority="high" decoding="async" width="400" height="284" src="https://hqsecure.com/wp-content/uploads/Add-CSS-Class-400x284.webp" srcset="https://hqsecure.com/wp-content/uploads/Add-CSS-Class.webp 479w, https://hqsecure.com/wp-content/uploads/Add-CSS-Class-400x284.webp 480w" sizes="(max-width:479px) 479px, 100vw" class="wp-image-3346" />
					<span class="et_overlay"></span>
				</a>
				</div><h3 class="et_pb_gallery_title">Add-CSS-Class</h3></div><div class="et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_1"><div class="et_pb_gallery_image landscape">
					<a href="https://hqsecure.com/wp-content/uploads/Add-CSS-Code.webp" title="Add CSS Code">
					<img loading="lazy" decoding="async" width="400" height="284" src="https://hqsecure.com/wp-content/uploads/Add-CSS-Code-400x284.webp" srcset="https://hqsecure.com/wp-content/uploads/Add-CSS-Code.webp 479w, https://hqsecure.com/wp-content/uploads/Add-CSS-Code-400x284.webp 480w" sizes="(max-width:479px) 479px, 100vw" class="wp-image-3345" />
					<span class="et_overlay"></span>
				</a>
				</div><h3 class="et_pb_gallery_title">Add CSS Code</h3></div></div><div class="et_pb_gallery_pagination"></div></div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>Text Module Content</h3>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">&lt;h2&gt;Dad Jokes&lt;/h2&gt;
If &lt;strong&gt;Dr. Pepper&lt;/strong&gt; was a doctor, what kind of doctor would he be? 

He would be a &lt;span class="obscure-text"&gt;fizzician&lt;/span&gt;.

Why do crabs never give to charity? 

Because &lt;span class="obscure-text"&gt;they’re shellfish.&lt;/span&gt;.

Why did the elephant have three red tennis shoes and one yellow shoe?

Because he &lt;span class="obscure-text"&gt;forgot to lift his leg&lt;/span&gt;!

&lt;style type="text/css"&gt;
span.obscure-text{
 transition: all .2s ease-in;
  background: #666;
}
span.obscure-text:hover{background: transparent;}
&lt;/style&gt;</pre>
<p>&nbsp;</p></div>
			</div><div class="et_pb_module et_pb_blog_0 et_pb_posts et_pb_bg_layout_light ">
				
				
				
				
				<div class="et_pb_ajax_pagination_container">
					
			<article id="post-3360" class="et_pb_post clearfix et_pb_blog_item_0_0 post-3360 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-design-2 category-news-notices">

				<a href="https://hqsecure.com/divi-5-released/" class="entry-featured-image-url"><img loading="lazy" decoding="async" src="https://hqsecure.com/wp-content/uploads/divi-5-interface-dark-large-1080x675.webp" alt="Divi 5 Released" class="" width="1080" height="675" srcset="https://hqsecure.com/wp-content/uploads/divi-5-interface-dark-large-1080x675.webp 1080w, https://hqsecure.com/wp-content/uploads/divi-5-interface-dark-large-980x664.webp 980w, https://hqsecure.com/wp-content/uploads/divi-5-interface-dark-large-480x325.webp 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1080px, 100vw" /></a>
														<h2 class="entry-title">
													<a href="https://hqsecure.com/divi-5-released/">Divi 5 Released</a>
											</h2>
				
					<p class="post-meta">by <span class="author vcard"><a href="https://hqsecure.com/author/flash/" title="Posts by Admin" rel="author">Admin</a></span> | <span class="published">Mar 13, 2025</span> | <a href="https://hqsecure.com/category/blog/" rel="tag">Blog</a>, <a href="https://hqsecure.com/category/design-2/" rel="tag">Design</a>, <a href="https://hqsecure.com/category/news-notices/" rel="tag">News &amp; Notices</a></p><div class="post-content"><div class="post-content-inner"><p>Discover the future of web design with Divi 5, where creativity meets functionality. Elevate your projects with cutting-edge features and seamless integration.Divi 5 marks a significant milestone in the web design industry, offering unparalleled flexibility and power...</p>
</div></div>			
			</article>
				
			<article id="post-3275" class="et_pb_post clearfix et_pb_blog_item_0_1 post-3275 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-wordpress-2 category-wordpress-tips-tricks">

				<a href="https://hqsecure.com/a-dev-unblur-on-hover/" class="entry-featured-image-url"><img loading="lazy" decoding="async" src="https://hqsecure.com/wp-content/uploads/Add-CSS-Code-858x675.webp" alt="Reveal Text on Hover" class="" width="1080" height="675" srcset="https://hqsecure.com/wp-content/uploads/Add-CSS-Code-858x675.webp 1080w, https://hqsecure.com/wp-content/uploads/Add-CSS-Code-480x427.webp 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 1080px, 100vw" /></a>
														<h2 class="entry-title">
													<a href="https://hqsecure.com/a-dev-unblur-on-hover/">Reveal Text on Hover</a>
											</h2>
				
					<p class="post-meta">by <span class="author vcard"><a href="https://hqsecure.com/author/flash/" title="Posts by Admin" rel="author">Admin</a></span> | <span class="published">Feb 7, 2025</span> | <a href="https://hqsecure.com/category/blog/" rel="tag">Blog</a>, <a href="https://hqsecure.com/category/wordpress-2/" rel="tag">WordPress</a>, <a href="https://hqsecure.com/category/wordpress-2/wordpress-tips-tricks/" rel="tag">WordPress Tips &amp; Tricks</a></p><div class="post-content"><div class="post-content-inner"><p>How to use CSS to make text appear when hovering over a div. By using the :hover pseudo-class, one can show and hide text on hover using CSS. In the demos below, I'm using the hover pseudo-class along with the background and text color attributes.Hide Text Until Hover...</p>
</div></div>			
			</article>
				
			<article id="post-3011" class="et_pb_post clearfix et_pb_blog_item_0_2 post-3011 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-design-2 category-tips-tricks">

				<a href="https://hqsecure.com/divi-translucent-glass-hover-effect/" class="entry-featured-image-url"><img loading="lazy" decoding="async" src="https://hqsecure.com/wp-content/uploads/Divi-Translucent-Glass-Hover-Effect-HQ-Secure-Global-Internet-1080x675.webp" alt="Divi Translucent Glass Hover Effect" class="" width="1080" height="675" srcset="https://hqsecure.com/wp-content/uploads/Divi-Translucent-Glass-Hover-Effect-HQ-Secure-Global-Internet-980x551.webp 980w, https://hqsecure.com/wp-content/uploads/Divi-Translucent-Glass-Hover-Effect-HQ-Secure-Global-Internet-480x270.webp 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1080px, 100vw" /></a>
														<h2 class="entry-title">
													<a href="https://hqsecure.com/divi-translucent-glass-hover-effect/">Divi Translucent Glass Hover Effect</a>
											</h2>
				
					<p class="post-meta">by <span class="author vcard"><a href="https://hqsecure.com/author/flash/" title="Posts by Admin" rel="author">Admin</a></span> | <span class="published">Apr 11, 2024</span> | <a href="https://hqsecure.com/category/blog/" rel="tag">Blog</a>, <a href="https://hqsecure.com/category/design-2/" rel="tag">Design</a>, <a href="https://hqsecure.com/category/tips-tricks/" rel="tag">Tips &amp; Tricks</a></p><div class="post-content"><div class="post-content-inner"><p>Clinton Eastwood Jr. (born May 31, 1930) is an American actor and film director. After achieving success in the Western TV series Rawhide, Elon Reeve Musk is a businessman and investor. He is the founder, chairman, CEO, and CTO of SpaceX; angel investor, CEO, product...</p>
</div></div>			
			</article>
				<div><div class="pagination clearfix">
	<div class="alignleft"><a href="https://hqsecure.com/category/wordpress-2/feed/page/2/?et_blog" >&laquo; Older Entries</a></div>
	<div class="alignright"></div>
</div></div></div>
				</div>
				 
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>The post <a href="https://hqsecure.com/a-dev-unblur-on-hover/">Reveal Text on Hover</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Competitive SEO with High Quality Back Links</title>
		<link>https://hqsecure.com/competitive-seo-with-high-quality-back-links/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Tue, 16 Jan 2024 12:17:59 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://hqsecure.com/?p=2949</guid>

					<description><![CDATA[<p>Mastering the Art of SEO: Link Up for Triumph!</p>
<p>The post <a href="https://hqsecure.com/competitive-seo-with-high-quality-back-links/">Competitive SEO with High Quality Back Links</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_1 et_pb_with_background et_pb_fullwidth_section et_section_regular" >
				
				
				
				
				
				
				<section class="et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_0 et_pb_text_align_left et_pb_bg_layout_dark et_pb_fullscreen">
				
				
				<span class="et_pb_background_pattern"></span>
				<span class="et_pb_background_mask"></span>
				<div class="et_pb_fullwidth_header_container left">
					<div class="header-content-container center">
					<div class="header-content">
						
						<h1 class="et_pb_module_header">Competitive SEO with High Quality Back Links</h1>
						<span class="et_pb_fullwidth_header_subhead">Elevate Your Online Presece</span>
						<div class="et_pb_header_content_wrapper"></div>
						
					</div>
				</div>
					
				</div>
				<div class="et_pb_fullwidth_header_overlay"></div>
				<div class="et_pb_fullwidth_header_scroll"></div>
			</section>
				
				
			</div><div class="et_pb_section et_pb_section_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_3 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_3_5 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>SEO Specialist</h4></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Level up Your SEO Game: Crush the Competition with Killer Backlinks!</h1></div>
			</div>
			</div><div class="et_pb_column et_pb_column_2_5 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_0">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="860" height="1060" src="https://hqsecure.com/wp-content/uploads/seo-specialist-illustration-01@2x.png" alt="" title="seo-specialist-illustration-01@2x" srcset="https://hqsecure.com/wp-content/uploads/seo-specialist-illustration-01@2x.png 860w, https://hqsecure.com/wp-content/uploads/seo-specialist-illustration-01@2x-480x592.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 860px, 100vw" class="wp-image-2951" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_4 et_pb_equal_columns">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_0">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>SEO Strategy</h4></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_1">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>SEO Audits</h4></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_2">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>SEO Analytics</h4></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_3 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_5">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Let’s put you on the top</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Competitive SEO, or search engine optimization, is all about staying ahead of the game and outperforming your competitors in the digital space. One key factor that can make or break your website&#8217;s ranking is the quality of your backlinks. In this article, we will explore the importance of high-quality backlinks in competitive SEO and how you can build a strong backlink profile to boost your website&#8217;s ranking. We will also unveil some secrets to gaining an edge over your SEO competitors and master the art of competitive SEO with strategic high-quality backlinks.</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_1">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1280" height="570" src="https://hqsecure.com/wp-content/uploads/seo-specialist-1.jpg" alt="" title="seo-specialist-1" srcset="https://hqsecure.com/wp-content/uploads/seo-specialist-1.jpg 1280w, https://hqsecure.com/wp-content/uploads/seo-specialist-1-980x436.jpg 980w, https://hqsecure.com/wp-content/uploads/seo-specialist-1-480x214.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1280px, 100vw" class="wp-image-2953" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_4 et_pb_fullwidth_section et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_0 et_pb_section_parallax">
				<span class="et_parallax_bg_wrap"><span
						class="et_parallax_bg et_pb_parallax_css"
						style="background-image: url(https://hqsecure.com/wp-content/uploads/SEO-Website-Development-Metrics.webp);"
					></span></span>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_5 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_6">
				<div class="et_pb_column et_pb_column_3_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Analyze</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>The importance of high-quality backlinks in competitive SEO</h3>
<p>Backlinks are like votes of confidence from other websites. They signal to search engines that your website is relevant, trustworthy, and authoritative. In the world of competitive SEO, quality matters more than quantity. Having a few high-quality backlinks from reputable and authoritative websites can do wonders for your website&#8217;s ranking. These backlinks act as strong endorsements and tell search engines that your website is worth ranking higher in search results. On the other hand, low-quality or spammy backlinks can harm your website&#8217;s reputation and lead to penalties from search engines. It is essential to focus on acquiring high-quality backlinks to give your website the competitive edge it needs.</p></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_tablet_right et_pb_button_alignment_phone_right et_pb_module ">
				<a class="et_pb_button et_pb_button_0 et_pb_bg_layout_light" href="https://hqsecure.com/contact/">Contact</a>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_7">
				<div class="et_pb_column et_pb_column_3_4 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Grow</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>How to build a strong backlink profile that boosts your website&#8217;s ranking</h3>
<p>Building a strong backlink profile requires a combination of strategy, patience, and creativity. To start, you should identify and reach out to authoritative websites in your industry that are relevant to your content. Building relationships with these websites can lead to valuable backlinks. Additionally, creating high-quality content that is shareable and informative will naturally attract backlinks from other websites. Guest blogging on authoritative platforms, participating in industry forums, and utilizing social media platforms can also help you gain quality backlinks. Remember, it&#8217;s not just about the number of backlinks, but the quality and relevance that matters the most in competitive SEO.</p></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_4 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_tablet_right et_pb_button_alignment_phone_right et_pb_module ">
				<a class="et_pb_button et_pb_button_1 et_pb_bg_layout_light" href="https://hqsecure.com/contact/">Contact</a>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_8">
				<div class="et_pb_column et_pb_column_3_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Convert</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>Focus on Authoritative &amp; Reputable Baklinks</h3>
<p>By focusing on building authoritative and reputable backlinks using white hat tactics, you can enhance your website’s overall SEO performance and improve its online visibility. Whether you are a small business owner, a marketer, or a website owner, understanding the importance of  <b>quality link building</b> is crucial for your online success.</p></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_button_module_wrapper et_pb_button_2_wrapper  et_pb_module ">
				<a class="et_pb_button et_pb_button_2 et_pb_bg_layout_light" href="https://hqsecure.com/contact/">Contact</a>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_6 et_pb_with_background et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_9">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>SEO Services</h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_10 et_pb_equal_columns">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_18 et_clickable et_pb_section_video_on_hover  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_3">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Technical SEO</h4></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_19 et_clickable et_pb_section_video_on_hover  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_4">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Social Media</h4></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_20 et_clickable et_pb_section_video_on_hover  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_5">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Local SEO</h4></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_11 et_pb_equal_columns">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_21 et_clickable et_pb_section_video_on_hover  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_6">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Web Booster</h4></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_22 et_clickable et_pb_section_video_on_hover  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_7">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>SEO Ranking</h4></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_23 et_clickable et_pb_section_video_on_hover  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_icon et_pb_icon_8">
				<span class="et_pb_icon_wrap "><span class="et-pb-icon"></span></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Analytics</h4></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_7 et_pb_with_background et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_12">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Free Audit</h4></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_13">
				<div class="et_pb_column et_pb_column_3_5 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Start With a Free SEO Audit</h2></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_3_wrapper  et_pb_module ">
				<a class="et_pb_button et_pb_button_3 et_pb_bg_layout_light" href="https://hqsecure.com/contact/">Contact HQ Secure</a>
			</div>
			</div><div class="et_pb_column et_pb_column_2_5 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_2">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="200" height="200" src="https://hqsecure.com/wp-content/uploads/seo-specialist-illustration-07@2x.png" alt="" title="seo-specialist-illustration-07@2x" class="wp-image-2954" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_8 et_pb_with_background et_section_specialty" >
				
				
				
				
				
				<div class="et_pb_row et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_27    et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_divider_0 et_pb_space et_pb_divider_hidden"><div class="et_pb_divider_internal"></div></div><div class="et_pb_module et_pb_image et_pb_image_3">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="510" height="597" src="https://hqsecure.com/wp-content/uploads/think-box-with-seo-scheme.webp" alt="" title="think-box-with-seo-scheme" srcset="https://hqsecure.com/wp-content/uploads/think-box-with-seo-scheme.webp 510w, https://hqsecure.com/wp-content/uploads/think-box-with-seo-scheme-480x562.webp 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 510px, 100vw" class="wp-image-2958" /></span>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_28   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_row_inner et_pb_row_inner_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_0 et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Web Presence SEO Experts</h4></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row_inner et_pb_row_inner_1">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_1 et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Email</h4></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_30 et_clickable  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4><a href="mailto:#">hello@hqsecure.com</a></h4></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row_inner et_pb_row_inner_2">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_2 et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_31  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>Phone</h4></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_32  et_pb_text_align_right et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h4>(970) 690-1356 Talk/Text</h4></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row_inner et_pb_row_inner_3">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_3 et-last-child">
				
				
				
				
				<div class="et_pb_button_module_wrapper et_pb_button_4_wrapper  et_pb_module ">
				<a class="et_pb_button et_pb_button_4 et_pb_bg_layout_light" href="https://hqsecure.com/schedule/">Schedule A Free Call</a>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row_inner et_pb_row_inner_4">
				<div class="et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_4">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_33  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h5>Services</h5></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_34  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><a href="#">SEO Audit &amp; Analysis</a></p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_35  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><a href="#">On-Page Optimization</a></p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_36  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><a href="#">Full Website Optimization</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><a href="#">Consultation</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><a href="#">Performance Enhancements</a></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_5 et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h5>Resources</h5></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_40  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><a href="#">Schedule an Audit</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_41  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><a href="#">Blog</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_42  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><a href="#">Case Studies</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_43  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><a href="#">What is SEO?</a></div>
			</div>
			</div>
				
				
				
				
			</div>
			</div>
				</div>
				
			</div></p>
<p>The post <a href="https://hqsecure.com/competitive-seo-with-high-quality-back-links/">Competitive SEO with High Quality Back Links</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress 6.2 ~ Dolphy!</title>
		<link>https://hqsecure.com/wordpress-6-2-dolphy/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Thu, 04 May 2023 12:58:23 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News & Notices]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://hqsecure.com/?p=2840</guid>

					<description><![CDATA[<p>On March 29, 2023, WordPress 6.2 “Dolphy” was released to the public. For more information on this release, read the WordPress 6.2 announcement. For Version 6.2, the database version (db_version in wp_options) stayed at 53496 with Trac revision 55610. A full list of tickets included in 6.2 can be found on Trac. Meet  the reimagined Site Editor An updated interface gives you more control [&#8230;]</p>
<p>The post <a href="https://hqsecure.com/wordpress-6-2-dolphy/">WordPress 6.2 ~ Dolphy!</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>On March 29, 2023, WordPress 6.2 “Dolphy” was released to the public. For more information on this release, read the <a href="https://wordpress.org/news/2023/03/dolphy/">WordPress 6.2 announcement</a>.</p>
<p>For Version 6.2, the database version (<strong>db_version</strong> in <strong>wp_options</strong>) stayed at <code>53496</code> with Trac revision <code>55610</code>.</p>
<p>A <a href="https://core.trac.wordpress.org/milestone/6.2">full list of tickets included in 6.2</a> can be found on <a href="https://core.trac.wordpress.org/">Trac</a>.</p>
<h3 id="meet-the-reimagined-site-editor" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#meet-the-reimagined-site-editor">Meet  the reimagined Site Editor</a></h3>
<p>An updated interface gives you more control over your site editing experience. Explore full previews of your templates and template parts, then jump in and get to editing your site from wherever you choose.</p>
<h3 id="manage-your-menu-in-more-ways-with-the-navigation-block" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#manage-your-menu-in-more-ways-with-the-navigation-block">Manage your menu in more ways with the Navigation block</a></h3>
<p>A new sidebar experience makes it easier to edit your site’s navigation. Add, remove, and reorder menu items faster—no matter how complex your menus are.</p>
<h3 id="discover-a-smoother-experience-for-the-block-inserter" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#discover-a-smoother-experience-for-the-block-inserter">Discover a smoother experience for the Block Inserter</a></h3>
<p>A refreshed design gives you more visibility and easier access to the content you need. Use the Media tab to drag and drop content from your existing Media Library quickly. Find patterns faster with a split view that lets you navigate categories and see previews all at once.</p>
<h3 id="find-the-controls-you-want-when-you-need-them" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#find-the-controls-you-want-when-you-need-them">Find the controls you want when you need them</a></h3>
<p>Your block settings sidebar is better organized with tabs for Settings and Styles. So the tools you need are easy to identify and access.</p>
<h3 id="build-faster-with-headers-and-footers-for-block-themes" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#build-faster-with-headers-and-footers-for-block-themes">Build faster with headers and footers for block themes</a></h3>
<p>Discover a new collection of header and footer patterns. Use them with any block theme as a quick, high-quality starting point for your site’s templates.</p>
<h3 id="explore-openverse-media-right-from-the-editor" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#explore-openverse-media-right-from-the-editor">Explore Openverse media right from the Editor</a></h3>
<p>Openverse’s library catalogs over 600 million free, openly licensed stock images and audio—and now it’s directly integrated into the Editor.</p>
<h3 id="focus-on-writing-with-distraction-free-mode" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#focus-on-writing-with-distraction-free-mode">Focus on writing with Distraction Free mode</a></h3>
<p>For those times you want to be alone with your ideas. You can now hide all your panels and controls, leaving you free to bring your content to life.</p>
<h3 id="experience-the-site-editor-now-out-of-beta" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#experience-the-site-editor-now-out-of-beta">Experience the Site Editor, now out of beta</a></h3>
<p>Stable and ready for you to dive in and explore: 6.2 is your personal invitation to discover what the next generation of WordPress—and block themes—can do.</p>
<h3 id="meet-the-new-style-book" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#meet-the-new-style-book">Meet the new Style Book</a></h3>
<p>Get a complete overview of how every block in your site’s library looks. All in one place, all at a glance.</p>
<h3 id="copy-and-paste-styles" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#copy-and-paste-styles">Copy and paste styles</a></h3>
<p>Perfect the design on one type of block, then copy and paste those styles to other blocks to get just the look you want.</p>
<h3 id="custom-css" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#custom-css">Custom CSS</a></h3>
<p>Power up your site any way you wish. Add CSS to your site, or your blocks, for another level of control over your site’s look and feel.</p>
<h3 id="sticky-positioning" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#sticky-positioning">Sticky positioning </a></h3>
<p>Choose to keep top-level group blocks fixed to the top of a page as visitors scroll.</p>
<h3 id="importing-widgets" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#importing-widgets">Importing widgets</a></h3>
<p>Options to import your favorite widgets from Classic themes to Block themes.</p>
<h3 id="local-fonts-in-themes" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#local-fonts-in-themes">Local fonts in themes</a></h3>
<p>Default WordPress themes offer better privacy with Google Fonts now included.</p>
<h2 id="learn-more-about-wordpress-6-2" class="is-toc-heading wp-block-heading" tabindex="-1"><a href="https://wordpress.org/documentation/wordpress-version/version-6-2/#learn-more-about-wordpress-6-2">Learn more about WordPress 6.2</a></h2>
<p>Explore <a href="https://learn.wordpress.org/workshops/">Learn WordPress</a> for quick how-to videos, courses, and other resources on using the latest features in WordPress. Or join a free <a href="https://learn.wordpress.org/social-learning/">live interactive online workshop</a>.</p>
<p>Check out the <a href="https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/">WordPress 6.2 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href="https://wordpress.org/documentation/wordpress-version/version-6-2/">6.2 release notes</a> for additional technical details about this release, including installation information, updates, fixes, file changes, and more.</p>
<p>The post <a href="https://hqsecure.com/wordpress-6-2-dolphy/">WordPress 6.2 ~ Dolphy!</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress 5.0 &#8211; What You Need to Know</title>
		<link>https://hqsecure.com/wordpress-5-0-what-you-need-to-know/</link>
		
		<dc:creator><![CDATA[Flash Alexander]]></dc:creator>
		<pubDate>Thu, 06 Dec 2018 18:36:50 +0000</pubDate>
				<category><![CDATA[News & Notices]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://hqsecure.com/?p=2356</guid>

					<description><![CDATA[<p>This entry was originally posted on December 5, 2018 by Mark Maunder WordPress 5.0 is being released today, December 6th. This release contains a major change to the WordPress editor. The new editor, code-named Gutenberg, is a substantial leap forward in functionality. It uses a new block-based system for editing which allows you to embed a [&#8230;]</p>
<p>The post <a href="https://hqsecure.com/wordpress-5-0-what-you-need-to-know/">WordPress 5.0 &#8211; What You Need to Know</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This entry was originally posted on December 5, 2018 by <a href="https://www.wordfence.com/blog/author/mark/">Mark Maunder</a></p>
<p>WordPress 5.0 is being released today, December 6th. This release contains a major change to the WordPress editor. The new editor, code-named Gutenberg, is a substantial leap forward in functionality. It uses a new block-based system for editing which allows you to embed a wide range of content in your posts and pages, and gives you a lot of flexibility in laying out those blocks on the page.</p>
<p>HQ Secure is in the process of testing this new release and once satisfied, will begin updating all WordPress websites to the new version.</p>
<p>Once Gutenberg and WordPress 5.0 have stabilized, they will provide long term benefits to WordPress users and the community. But in the short term, this change may introduce challenges for some WordPress site owners. In this post we will discuss a few points that will help you decide when to upgrade to WordPress 5.0, and to formulate a successful strategy for making the transition.</p>
<h2>Why is WordPress changing the editor?</h2>
<p>The WordPress core development team has been talking about Gutenberg for quite some time. The goal, according to Matt Mullenweg, is “to simplify the first-time user experience with WordPress — for those who are writing, editing, publishing, and designing web pages. The editing experience is intended to give users a better visual representation of what their post or page will look like when they hit publish.”</p>
<p>Overall, we agree that Gutenberg will be a giant leap forward in using WordPress to create content online. But, as Matt stated, the goal is to simplify the experience for the first-time user. For the rest of us who have assembled a number of tools to fill the gaps in the older editor’s shortcomings, this will be a period of adjustment.</p>
<h2>Potential Problems With Legacy Plugins and Themes</h2>
<p>WordPress has been around for over 15 years, and in that time millions of websites have been created using the current editing framework. Often, sites are created and never updated to more modern themes. There are a large number of abandoned plugins installed on WordPress sites – plugins that are no longer being actively maintained by their developers.  No one is testing these abandoned plugins or older themes to see how they will behave with Gutenberg.</p>
<p>Adding to the complexity, many of these sites may be hosted on managed WordPress hosting services that will auto-update to the new WordPress version.</p>
<p>Some WordPress site owners may be unable to effectively edit pages they had previously published. Some may be unable to access their edit screen. There may be server 500 errors or white screens for some users. Or everything may run smoothly, even with legacy plugins and a legacy theme.</p>
<p>With over 60,000 unique plugins in the WordPress plugin directory, it is not feasible to test all of the plugins with the new editor. Actively maintained plugins are, for the most part, being tested by the plugin authors. Abandoned plugins will not have been tested, so it is up to you to test whether WordPress 5.0 will work with these plugins.</p>
<p>The same applies to themes. Many themes are actively maintained by their authors. In other cases, a theme may have been created as a single project for a customer or created for the community and then left unmaintained. These unmaintained themes have not been tested with Gutenberg and WordPress 5.0.</p>
<p>If you do anticipate compatibility problems with WordPress 5.0, you can keep the current WordPress editor by installing the <a href="https://wordpress.org/plugins/classic-editor/" target="_blank" rel="noopener">WordPress Classic Editor Plugin</a>. We recommend you do this ahead of time, rather than try to use the new editor with incompatible code. But it’s also worth pointing out that Gutenberg and WordPress 5.0 are a significant step forward in editing power and flexibility. So it is worth investing the time to make your site compatible, modifying it if needed, and then reaping the benefits of a brand new block-based editor.</p>
<h2>Will Wordfence work with Gutenberg?</h2>
<p>Yes. Wordfence does not interact with the editor, so it will not be impacted by Gutenberg. Our QA team has thoroughly verified that Wordfence is ready for Gutenberg and WordPress 5.0.</p>
<p>Because you do have Wordfence installed, you will receive a notification that WordPress is out of date and requires an update. Please keep in mind that this is no ordinary update. This is a major change to your content management system, and we recommend that if you’re not ready for the new editor, wait to update WordPress. Yes, you will receive security warnings from Wordfence because the basic premise has always been to keep open source software updated. If you are not entirely ready for WordPress 5.0, however, there is no harm in staying on the current version while you get ready.</p>
<p><strong>The current version of WordPress core is 4.9.8</strong>. If you remain on this version, you will continue to receive security updates from the WordPress core team. The <strong>current </strong>policy of the WordPress security team is to back-port security fixes to all auto-update compatible WordPress core versions. That means that all versions of WordPress core will continue to receive security updates all the way back to WordPress 3.7. This is not an open-ended policy and may change in the future.</p>
<h2>How do I know if I am ready?</h2>
<p>Do you have a testing environment for your website? Have you tried the new Gutenberg editor? Are you using a <a href="https://www.wordfence.com/blog/2018/10/php5-dangerous/">modern version of PHP</a>? Great, you’ll likely be prepared for WordPress version 5.0. As with all major releases, we recommend updating your test environment first to look for problems.</p>
<p>Look for anomalies with all of your page layouts. It also makes sense to go back in time on your test environment and review older posts and pages to ensure they’re ready for the new editor.</p>
<p>As always back up both your site files and your database prior to any update, especially an update of this magnitude.</p>
<h2>If your hosting provider auto-updates</h2>
<p>If you’re on managed WordPress hosting, your hosting provider will automatically update WordPress for you. Your managed WordPress provider should be taking backups for you. Check with your hosting provider to see what support they will provide for the new WordPress editor and when they will be updating to WordPress 5.0. Some hosting providers, <a href="https://twitter.com/strebel/status/1070010706852900864" target="_blank" rel="noopener">like Page.ly</a>, are waiting until January of next year to do the update.</p>
<h2>If you’re using a page builder or premium theme</h2>
<p>If your site uses a page builder like Visual Composer, Divi, Beaver Builder or any other tool that uses shortcodes, check with the developer to ensure that your tool is ready for Gutenberg. Many page builders come bundled with premium themes. You may need to check with your theme developer to ensure that you have the updated versions installed on your sites.</p>
<h2>What are the security implications of Gutenberg?</h2>
<p>We are not currently aware of any security issues with WordPress 5.0 or Gutenberg. The project is being moved into production at a rapid pace which increases the risk of a security issue emerging, because this reduces the amount of time available for testing and debugging.</p>
<p>At this phase in the evolution of WordPress, there are a large number of security teams globally that have eyes on the code and are actively conducting research to determine if there are vulnerabilities in new WordPress releases. As soon as an issue emerges, our team will react and release a firewall rule in real-time to protect our Premium Wordfence customers.</p>
<p>Once WordPress 5.0 is released, there will likely be a series of smaller releases that will emerge over the following weeks. We recommend that you monitor the <a href="https://wordpress.org/news/" target="_blank" rel="noopener">official WordPress blog</a> and if they announce a security update, upgrade as soon as possible.</p>
<h2>Overall Is This Good News</h2>
<p>As mentioned above, Gutenberg and WordPress 5.0 are a major leap forward in the evolution of WordPress. Rapid innovation does not come without risk or inconvenience to a such a large user base. Our team is excited to embrace the new WordPress and to use it ourselves. By following our recommendations above, you can reduce the risk of this transition and migrate smoothly into 2019 with a powerful new editor for WordPress.</p>
<p>The post <a href="https://hqsecure.com/wordpress-5-0-what-you-need-to-know/">WordPress 5.0 &#8211; What You Need to Know</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress Themes &#8211; What You Should Know</title>
		<link>https://hqsecure.com/wordpress-themes-what-you-should-know/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Fri, 24 Aug 2018 16:08:13 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://hqsecure.com/?p=2327</guid>

					<description><![CDATA[<p>WordPress requires a theme for it to work and become a website. A WordPress Theme is a collection of files that work together to produce a graphical interface with an underlying unifying design for a weblog. These files are called template files. A Theme modifies the way the site is displayed, without modifying the underlying software. A WordPress theme [&#8230;]</p>
<p>The post <a href="https://hqsecure.com/wordpress-themes-what-you-should-know/">WordPress Themes &#8211; What You Should Know</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>WordPress requires a theme for it to work and become a website. A WordPress Theme is a collection of files that work together to produce a graphical interface with an underlying unifying design for a weblog. These files are called template files. A Theme modifies the way the site is displayed, without modifying the underlying software.</p>
<p>A WordPress theme provides all of the front end styling of your WordPress site.</p>
<p>Most WordPress themes provide:</p>
<ul>
<li>Overall design or style of your site</li>
<li>Font styling (color, style, font-family, kerning, line-height and more)</li>
<li>Colors</li>
<li>Widget locations (Specific content collection that can appear in multiple locations on a website)</li>
<li>Page layouts (or templates)</li>
<li>Shop page layouts</li>
<li>Blog, page, post styles &#8211; additional stylistic details</li>
</ul>
<p>Not all themes are created equally. Many themes underperform and plenty of others over perform. Some themes are poorly coded and cause problems; slow websites, crashes and more. Other themes are expertly coded and run fast and efficient.</p>
<p>Back in the old days (1997), I would code my own themes. Later on I used other developers ‘free’ themes. Eventually I started buying themes to save development time and be able to build a WordPress websites at competitive prices.</p>
<p>Some paid themes I’ve used:</p>
<p><a href="https://themeforest.net/item/rttheme-15-premium-wordpress-theme/781397?s_rank=3">https://themeforest.net/item/rttheme-15-premium-wordpress-theme/781397?s_rank=3</a><br />
<a href="https://themeforest.net/item/karma-responsive-wordpress-theme/168737?s_rank=1">https://themeforest.net/item/karma-responsive-wordpress-theme/168737?s_rank=1</a><br />
<a href="https://themeforest.net/item/real-homes-wordpress-real-estate-theme/5373914">https://themeforest.net/item/real-homes-wordpress-real-estate-theme/5373914</a><br />
<a href="https://themeforest.net/item/breeze-html5-css3-store-template/3722352">https://themeforest.net/item/breeze-html5-css3-store-template/3722352</a></p>
<p>Several years ago a company named Elegant Themes was selling themes that were very well coded, so I started using those. As time went on they came up with the Divi theme (Teazen was using Divi). Divi has become the #1 WordPress theme in use today. It has a huge following and is well supported by Elegant Themes support staff, as well as Facebook pages and Divi specific development websites:</p>
<p><a href="https://divilicious.com">https://divilicious.com</a><br />
<a href="http://diviplugins.com">http://diviplugins.com</a><br />
<a href="https://divilife.com">https://divilife.com</a><br />
<a href="https://divihelp.com">https://divihelp.com</a></p>
<p>… the list goes on.</p>
<p>What is the best theme? There are plenty of ‘experts’ who pontificate on that subject:</p>
<p><a href="https://athemes.com/collections/most-popular-wordpress-themes/">https://athemes.com/collections/most-popular-wordpress-themes/</a><br />
<a href="https://www.isitwp.com/top-wordpress-themes/">https://www.isitwp.com/top-wordpress-themes/</a><br />
<a href="https://www.thebestdesigns.com/themes/">https://www.thebestdesigns.com/themes/</a><br />
<a href="https://athemes.com/collections/most-popular-wordpress-themes/">https://athemes.com/collections/most-popular-wordpress-themes/</a></p>
<p>For us developer, to have to jump into an unfamiliar theme can be a difficult proposition. You often need a road map to figure out how it is crafted together and how that relates to its doing its job. There certainly is a learning curve. Some themes have a huge learning theme (<a href="https://avada.theme-fusion.com/">Avada WordPress Theme</a>), others almost none at all.</p>
<p>I first began using the Divi theme in 2013. In the past few years I’ve only used Divi when developing new websites. I’ve had so much fun working with the Divi theme and interacting with other Divi developers that I’ve dedicated a Divi specific website to support the Divi community. But Divi isn’t for everybody.</p>
<p>The web developers of today don’t have the background in coding that some of us old guys grew up with. They grew up finding and using shortcuts to accomplish what us coders created years ago. For example, displaying content in uniform rows that compress and or stack depending what device they are being displayed on (desktop, iPad, mobile phone) involves some tricky coding. Since this need occurs on almost every website I developed a WordPress plugin called simple grid. My plugin give other Divi developers the ability to put in columnar data with the click of the mouse, saving them hours of coding.</p>
<p>If one doesn’t know about my Simple Grid plugin and can’t find their way around the code, developing content that requires columnar formatting will prove to be a difficult hill to climb. Likewise, a developer jumping into an unfamiliar theme will also have a rough go. It is for these reasons that most developers will recommend a specific theme to their clients. Of course they will want to work in a theme that they are familiar with and have used many times before.</p>
<p>Depending upon the complexity of a particular website, changing an existing theme should be thought out very carefully. It isn’t necessarily a bad thing – if said developer is going to be managing that website for days, weeks, months and years it makes sense to be in familiar territory.</p>
<p>A web development company or specific develoer may have changed out the theme to something they were familiar with. This tells the site owner they will be the main developer when it comes to content. Because they are familiar with the particular theme, they will then know how it performs with  the various plugins; WooCommerce, payment gateways, etc. and be able to work quickly and efficiently in it.</p>
<p>Going forward, you will want to consult with your previous developer and current developer on any theme additions and or changes as to future enhancements, functions, and extensions.</p>
<p>The post <a href="https://hqsecure.com/wordpress-themes-what-you-should-know/">WordPress Themes &#8211; What You Should Know</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Non Hosted WP Maintenance</title>
		<link>https://hqsecure.com/non-hosted-wp-maintenance/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Wed, 13 Jan 2016 18:03:26 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://hqsecure.com/?p=1929</guid>

					<description><![CDATA[<p>Non Hosted WordPress Maintenance &#38; Optimization Not hosting with us? HQ Secure can still provide website maintenance and optimization services. We understand that managing ones WordPress site is not for everyone &#8211; having to deal with the hassle of running backups, updating WordPress to version 4.x,  updating host scripts, plugins, and or settings.  Sophisticated software [&#8230;]</p>
<p>The post <a href="https://hqsecure.com/non-hosted-wp-maintenance/">Non Hosted WP Maintenance</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>Non Hosted WordPress Maintenance &amp; Optimization</h3>
<p>Not hosting with us? HQ Secure can still provide website maintenance and optimization services. We understand that managing ones WordPress site is not for everyone &#8211; having to deal with the hassle of running backups, updating WordPress to version 4.x,  updating host scripts, plugins, and or settings.  Sophisticated software packages like WordPress should be periodically reviewed and maintained at the least on a quarterly basis; every three months. HQ Secure&#8217;s WordPress Maintenance and Optimization Package tackles the technicalities for you and frees you from the worry and risks of exploitable code, incompatible code, or an upgrade gone wrong. WordPress Maintenance and Optimization packages from HQ Secure will protect your hard work, carefully collected content and website/blog settings.</p>
<h3>HQ Secure WordPress Maintenance and Optimization Packages Include:</h3>
<ul>
<li>Ongoing maintenance of a single WordPress site.</li>
<li>WordPress database is backed up weekly (annual plan). Additional backup options available.</li>
<li>Database is optimized and repaired as needed.</li>
<li>Recovery assistance is provided in the event of a security breach or loss of data. (Includes one hour billable time)</li>
<li>WordPress Database Back-up -HQ Secure will backup your WordPress database content and configuration, store it both remotely and locally. Don&#8217;t risk the loss of all your hard work, content and settings. DVD or CD-R copies $25.00 additional (up to 500MB).</li>
<li>Upgrade WordPress &#8211; WordPress will be upgraded to the latest version. WordPress upgrades usually address the latest bugs and security fixes. It is highly recommended that you upgrade to the latest versions.</li>
<li>Check Host for Script Updates</li>
<li>WordPress Plugins Upgrade &#8211; Like WordPress, plugins are updated at the same time to address bugs, fixes, and new features. We will review you plugins and upgrade them to the latest version.</li>
<li>Regular Password Changes (optional)</li>
<li>File Permissions Check</li>
<li>Security Scan</li>
<li>Broken Links Check</li>
<li>Comment Spam Review</li>
<li>Includes 30 minutes of technical support to address compatibility problems, (additional technical support time will be billed at standard hourly rate)</li>
</ul>
<h3 style="text-align: center;"><div class='et-box et-shadow'>
					<div class='et-box-content'>HQ Secure takes the hassle out of your website maintenance. Sign-up for HQ Secure&#8217;s WordPress Maintenance and Optimization Package.</div></div></h3>
<h3>Pricing</h3>
<ul>
<li>One Time &#8211;  $85.00</li>
<li>Monthly Annual Pay: $149.50 &#8211; <em><strong>Best Value</strong></em></li>
<li>Note: This service is for websites NOT hosted by HQ Secure Global Internet</li>
</ul>
<p><a href="https://hqsecure.com/clientexec/order.php?step=1&amp;productGroup=23&amp;product=77"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1168" src="https://hqsecure.com/wp-content/uploads/buy-nowguaranteed-visa-mc-discover1.jpg" alt="Order WordPress Maintenance Package" width="369" height="186" srcset="https://hqsecure.com/wp-content/uploads/buy-nowguaranteed-visa-mc-discover1.jpg 369w, https://hqsecure.com/wp-content/uploads/buy-nowguaranteed-visa-mc-discover1-300x151.jpg 300w" sizes="(max-width: 369px) 100vw, 369px" /></a></p>
<p>The post <a href="https://hqsecure.com/non-hosted-wp-maintenance/">Non Hosted WP Maintenance</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WooCommerce Button Colors</title>
		<link>https://hqsecure.com/woocommerce-button-color/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Sun, 21 Dec 2014 14:55:21 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[WooCommerce]]></category>
		<category><![CDATA[WordPress Tips & Tricks]]></category>
		<guid isPermaLink="false">https://hqsecure.com/?p=1687</guid>

					<description><![CDATA[<p>Change WooCommerce Button Colors :: Copy and paste css to modify WooCommerce Product Add to Cart, On Sale, and Product Price buttons.</p>
<p>The post <a href="https://hqsecure.com/woocommerce-button-color/">WooCommerce Button Colors</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span class='et-dropcap'>W</span>ooCommerce button colors got you down. Did you just discover that the color adjustments available in the admin have nothing to do with the color of the buttons appearing on the front of your website? In this age of extended WordPress capabilities one would think that WooCommerce would have provided that functionality. I suppose, with a little free time and some motivation, one could build a plugin for that. Until that day arrives, I present to you my WooCommerce Product Add to Cart, On Sale, and Product Price buttons cheat sheet.</p>
<p>Copy and paste this css into your child theme and watch the colors of your WooCommerce buttons magically appear in lime-ish green and purple.</p>
<div class='et-learn-more clearfix'>
					<h3 class='heading-more'>Reveal CSS<span class='et_learnmore_arrow'><span></span></span></h3>
					<div class='learn-more-content'><p><code> /* === WOOCOMMERCE ==================================== */</code></p>
<p><code> /* Theme / Site Specific */ div.single_variation{position: relative; top: -7px;}
</code><code>.woocommerce table.cart input, .woocommerce #content table.cart input, .woocommerce-page table.cart input, .woocommerce-page #content table.cart input {vertical-align: top;} table.cart td.actions .button.alt, #content table.cart td.actions .button.alt {margin: 0;}</code></p>
<p><code> /* Add to Cart Button Color */
</code><code>.woocommerce a.alt.button, .woocommerce button.alt.button, .woocommerce input.alt.button,
.woocommerce #respond input.alt#submit, .woocommerce #content input.alt.button,
.woocommerce-page a.alt.button, .woocommerce-page button.alt.button,
.woocommerce-page input.alt.button, .woocommerce-page #respond input.alt#submit,
.woocommerce-page #content input.alt.button{
background:#A54873 !important; border-color:#934067 !important;
</code><span style="line-height: 1.5;">}</span></p>
<p><code>/* On Sale Notice Color */
body.woocommerce span.onsale {
border: 1px solid #93C429; background: #f8ffe8;
background: -moz-linear-gradient(top, #f8ffe8 0%, #e3f5ab 33%, #b7df2d 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8ffe8), color-stop(33%,#e3f5ab), color-stop(100%,#b7df2d));
background: -webkit-linear-gradient(top, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%);
background: -o-linear-gradient(top, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%);
background: -ms-linear-gradient(top, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%);
background: linear-gradient(to bottom, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8ffe8', endColorstr='#b7df2d',GradientType=0 );
}</code></p>
<p><code>/* Price Buttons */
.et-price-sale {
border: 1px solid #934188; background: #e570e7;
background: -moz-linear-gradient(top, #e570e7 0%, #c85ec7 47%, #a849a3 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e570e7), color-stop(47%,#c85ec7), color-stop(100%,#a849a3));
background: -webkit-linear-gradient(top, #e570e7 0%,#c85ec7 47%,#a849a3 100%);
background: -o-linear-gradient(top, #e570e7 0%,#c85ec7 47%,#a849a3 100%);
background: -ms-linear-gradient(top, #e570e7 0%,#c85ec7 47%,#a849a3 100%);
background: linear-gradient(to bottom, #e570e7 0%,#c85ec7 47%,#a849a3 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e570e7', endColorstr='#a849a3',GradientType=0 );
}</code></p>
<p><code> </code></div>
				</div>
<h3>Roll Your Own</h3>
<p>Certainly limey green a purple aren&#8217;t going to satisfy everybody, and yes there is a trick to it &#8211; an easy way to change the colors. I cheated by heading over to <a title="Colorzilla Ultimate CSS Gradient Generator" href="http://colorzilla.com/gradient-editor/" target="_blank">ColorZilla&#8217;s Ultimate CSS Gradient Generator</a>, picked a couple off the shelf gradients, then simply copied and pasted.</p>
<p><a href="https://hqsecure.com/wp-content/uploads/Ultimate-CSS-Gradient-Generator-ColorZilla.jpg"><img loading="lazy" decoding="async" class="aligncenter wp-image-1692 " title="ColorZilla Ultimate CSS Gradient Designer" src="https://hqsecure.com/wp-content/uploads/Ultimate-CSS-Gradient-Generator-ColorZilla.jpg" alt="Ultimate CSS Gradient Generator - ColorZilla" width="769" height="539" srcset="https://hqsecure.com/wp-content/uploads/Ultimate-CSS-Gradient-Generator-ColorZilla.jpg 961w, https://hqsecure.com/wp-content/uploads/Ultimate-CSS-Gradient-Generator-ColorZilla-300x210.jpg 300w" sizes="(max-width: 769px) 100vw, 769px" /></a></p>
<p>The post <a href="https://hqsecure.com/woocommerce-button-color/">WooCommerce Button Colors</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>We Hate Email Harvesters</title>
		<link>https://hqsecure.com/we-hate-email-harvesters/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Tue, 01 Apr 2014 16:04:09 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tips & Tricks]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[harvesters]]></category>
		<category><![CDATA[spam]]></category>
		<guid isPermaLink="false">https://hqsecure.com/?p=1065</guid>

					<description><![CDATA[<p>ll email harvesters are automated software applications which roam the Internet. Like search engine robots, they travel around visiting web pages and gathering information to be stored in a database. Unlike search engines, email harvesters are only looking for email addresses. They are usually sent by spammers and any addresses they find are added to their spam [&#8230;]</p>
<p>The post <a href="https://hqsecure.com/we-hate-email-harvesters/">We Hate Email Harvesters</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span class='et-dropcap'>A</span>ll email harvesters are automated software applications which roam the Internet. Like <i>search engine robots</i>, they travel around visiting web pages and gathering information to be stored in a database. Unlike search engines, email harvesters are only looking for email addresses. They are usually sent by spammers and any addresses they find are added to their spam database. Obviously this is a bad thing and you don&#8217;t want harvesters to find your address.Publishing an email address on a web page invites more spam. Protect your address by masking it from the email harvesters (spambots) used by spammers.</p>
<p>There are a number of ways to fend off harvesters, each with their pros and cons. Generally speaking, the easier methods to implement are the most difficult for your visitors to use (and vice versa).</p>
<p>his method is simple to follow but comes with the risk that real humans also might get confused and “de-mung” the address incorrectly. Spam bots are also getting better, so it is reasonable to assume that some can pick up variations of an email address. But along with the GIF signature, this remains the easiest one to apply in places like community boards.</p>
<p>Hide via ASCII</p>
<p>Each character can be mapped to a corresponding ASCII code. ASCII codes are translated by browsers into the readable character form, but it handicaps the spam bots as they fail to recognize the codes. You can use the HQ Secure <a href="https://hqsecure.com/stop-spam-email-obfuscator/">Email Obfuscater</a> to generate and AXCII coded email address. Though not 100% effective, it will eliminate up to 80% of harverters. Now your email will look like:<br />
&amp;#121;&amp;#111;&amp;#117;&amp;#64;&amp;#121;&amp;#111;&amp;#117;&amp;#114;&amp;#100;&amp;#111;&amp;#109;&amp;#97;&amp;#105;&amp;#110;&amp;#46;&amp;#99;&amp;#111;&amp;#109;</p>
<h2>Use an Image Email Address</h2>
<h2><img loading="lazy" decoding="async" alt="you at your domain dot com" src="https://hqsecure.com/wp-content/uploads/you-at-your-domain-dot-com.png" width="294" height="35" /></h2>
<p>The email address above is not text but a transparent GIF image created in a photo editor. It looks neater and spam bots cannot read it because it is an image file and using OCR is still a long way off. But using GIF email signatures has a couple of disadvantages – the recipient can miss the email ID if images are turned off in his browser. Also, a GIF email sign ideally should not be hyperlinked… so recipients will have to key in the ID themselves, and that’s a bit inconvenient.</p>
<h2>Encode With JavaScript</h2>
<p><code>&lt;script type='text/javascript'&gt;var a = new Array('domain.com','you@your');document.write("&lt;a href='mailto:"+a[1]+a[0]+"'&gt;"+a[1]+a[0]+"&lt;/a&gt;");&lt;/script&gt;</code></p>
<p>That’s ‘johndoe@email.com’ obscured with JavaScript and inserted into the HTML of a webpage. Spam bots don’t do a good job of reading JavaScript and can’t find the ID in the source code, but our usual browsers render it perfectly. Of course, you need to have it switched on to display the email signature correctly. There are many JavaScript generators available freely on the web that can generate the code for you. Copy the code into your HTML where you want the link to appear.</p>
<h2>Use a Disposable Email Address</h2>
<p>Disposable email addresses are also a neat solution. These onetime dummy email accounts can be used when giving out email addresses to websites. You can abandon them at will. We have covered quite a few web services which generate disposable email addresses. Suggest: Yahoo, Gmail, Outlook&#8230;</p>
<p>I also came across a service called <a href="http://scr.im/">Scrim</a> which protects your email address by disguising it using a custom link. You can try it out.</p>
<h2>Use Contact Forms</h2>
<p>Secure email forms are the best and most professional way to protect email addresses while soliciting information. All professionally designed websites will have one. It is user-friendly as all the reader has to do is add information and click on submit. Email addresses aren’t displayed to the readers or spam bots. A further barrier of a CAPTCHA prevents auto-populating bots from attacking the system. Yes, the reader cannot use his favored email client to send messages but that’s a small inconvenience.</p>
<h2>Summary</h2>
<p>These five points cover the bare minimum we can do as individuals and also as web designers to protect email addresses from the scourge of email harvesters. There are a few more advanced techniques that go around like <a href="http://c2.com/cgi/wiki?SpiderTrap">Spider Traps</a>. Anti-spam methods are many and more are coming online as the spam battle evolves. Battle may be a little soft; all out war! How do you combat it at your level? Are you aware of email harvesters and the tricks they play?</p>
<h2>Final Word</h2>
<p>Never respond to a spam email.  Do not click their &#8216;unsubscribe&#8217; link. It only confirms your identity and makes your email address more valuable to them.</p>
<p>The post <a href="https://hqsecure.com/we-hate-email-harvesters/">We Hate Email Harvesters</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Grab WordPress Featured Image URL</title>
		<link>https://hqsecure.com/grab-wordpress-featured-image-url/</link>
					<comments>https://hqsecure.com/grab-wordpress-featured-image-url/#comments</comments>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Tue, 24 Sep 2013 16:27:42 +0000</pubDate>
				<category><![CDATA[News & Notices]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tips & Tricks]]></category>
		<category><![CDATA[featured image]]></category>
		<category><![CDATA[timthumb]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://hqsecure.com/?p=928</guid>

					<description><![CDATA[<p>The WordPress Featured Image is a great tool where ones pages and posts can be easily illustrated with a pre-configured display of any selected image that has been uploaded to the WordPress Media Library. As a WordPress theme developer, I often have to find new ways to display the featured image, or in the case of editing somebody else s WordPress theme, I may find myself using the feature image function in</p>
<p>The post <a href="https://hqsecure.com/grab-wordpress-featured-image-url/">Grab WordPress Featured Image URL</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span class='et-dropcap'>O</span>ften I find myself working with WordPress themes where I need to do something with the featured image. The WordPress Featured Image is a great tool where ones pages and posts can be easily illustrated with a pre-configured display of any selected image that has been uploaded to the WordPress Media Library. As a WordPress theme developer, I often have to find new ways to display the featured image, or in the case of editing somebody else s WordPress theme, I may find myself using the feature image function in combination with other display tools, such as timthumb.php or ???</p>
<p>My preferred method is to grab the url of the featured image, then use that to construct what will be needed given the design brief. The following is my code to grab the featured image URL:</p>
<h4>Display URL Example</h4>
<pre class="toolbar:1 scroll:true lang:php decode:true" title="Grab and Display WordPress Featured Image URL">&lt;?php if (has_post_thumbnail( $post-&gt;ID )) : ?&gt;
&lt;?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'single-post-thumbnail' ); ?&gt;
&lt;img src="&lt;?php echo $image; ?&gt;" /&gt;
&lt;?php endif; ?&gt;</pre>
<p>Easy peasy. How about getting it to display as an image? Note I&#8217;ve added an image class to help me style how the image will be displaying.</p>
<h4>Image Display Example</h4>
<pre class="toolbar:1 scroll:true lang:php decode:true" title="Grab WordPress Featured Image URL">&lt;?php if (has_post_thumbnail( $post-&gt;ID )) : ?&gt;
&lt;?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'single-post-thumbnail' ); ?&gt;
&lt;img class="myFeatured-image" src="&lt;?php echo $image; ?&gt;" /&gt;" alt="Featured Image" /&gt;
&lt;?php endif; ?&gt;</pre>
<p>Let us link that displayed image to something. In this example I&#8217;m showing the featured image in a lightbox effect:</p>
<h4>Hyperlinked Example</h4>
<pre class="toolbar:1 scroll:true lang:php decode:true" title="Link Displayed Featured Image">&lt;?php if (has_post_thumbnail( $post-&gt;ID )) : ?&gt;
&lt;?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'single-post-thumbnail' ); ?&gt;
&lt;a href="&lt;?php echo $image; ?&gt;" title="Featured Image" rel="fancybox"&gt;&lt;img class="myFeatured-image" src="&lt;?php echo $image; ?&gt;" /&gt;" alt="Featured Image" /&gt;&lt;/a&gt;
&lt;?php endif; ?&gt;</pre>
<p>Showing the featured image full size then linking the same image to appear in a lightbox effect is silly at best. What generally occurs is displaying an image thumbnail, then having that link to the full size image. To achieve this I use the popular (and now secure) timthumb.php script found at <a title="TimThumb.php code from Google" href="http://code.google.com/p/timthumb/" target="_blank">Google</a><img loading="lazy" decoding="async" class="alignnone size-full wp-image-641" title="icon offsite" alt="off site icon" src="https://hqsecure.com/wp-content/uploads/ico-offsite.gif" width="16" height="16" /></p>
<h4>TimThumb.php Example</h4>
<pre class="toolbar:1 scroll:true lang:php decode:true" title="TimThumb.php Usage Example">&lt;?php if (has_post_thumbnail( $post-&gt;ID )) : ?&gt;
&lt;?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'single-post-thumbnail' ); ?&gt;
&lt;a href="&lt;?php echo $image; ?&gt;" title="Featured Image" rel="fancybox"&gt;
	&lt;img class="myFeatured-image" src="http://your.path.to.timthumb.php?src=&lt;?php echo $image; ?&gt;&amp;q=100" /&gt;" alt="Featured Image" /&gt;
&lt;/a&gt;
&lt;?php endif; ?&gt;</pre>
<h4>Notes</h4>
<p>In the above example, I&#8217;ve added q=100 which sets the rendered jpg quality to 100%. There are more variables that can be added, including how and where to crop. You will need the GD library installed on your server (who doesn&#8217;t these days). Learn more about the timthumb script and its primary developer Ben Gilbanks from <a title="Binary Moon" href="http://www.binarymoon.co.uk/projects/timthumb/" target="_blank">Ben&#8217;s TimThumb website</a> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-641" title="icon offsite" alt="off site icon" src="https://hqsecure.com/wp-content/uploads/ico-offsite.gif" width="16" height="16" /></p>
<p>&nbsp;</p>
<p>The post <a href="https://hqsecure.com/grab-wordpress-featured-image-url/">Grab WordPress Featured Image URL</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hqsecure.com/grab-wordpress-featured-image-url/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive Web Design</title>
		<link>https://hqsecure.com/responsive-web-design/</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Fri, 19 Apr 2013 18:01:41 +0000</pubDate>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://hqsecure.com/?p=698</guid>

					<description><![CDATA[<p>Responsive web design make your website content accessible no matter what device a user comes to your site with. Android, iphone, ipad, Kindle, Nexus - Yes!</p>
<p>The post <a href="https://hqsecure.com/responsive-web-design/">Responsive Web Design</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_9 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_14">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_29  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_4 et-waypoint">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="600" height="260" src="https://hqsecure.com/wp-content/uploads/Flat-Responsive-Design-option.jpg" alt="Responsive WordPress Theme Development" title="Responsive WordPress Theme Development" srcset="https://hqsecure.com/wp-content/uploads/Flat-Responsive-Design-option.jpg 600w, https://hqsecure.com/wp-content/uploads/Flat-Responsive-Design-option-300x130.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" class="wp-image-1737" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_44  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Remember the website days past, where to have the coolest website it would have to have some stunning Flash animation flying around on the screen. Those days are long gone. Today the landscape is shifting, yes, more quickly than we can keep up at times. Mobile browsing is expected to outpace desktop-based access within three to five years. Two of the three dominant video game consoles have web browsers. We’re designing for mice and keyboards, for T9 keypads, for handheld game controllers, for touch interfaces. In short, we’re faced with a greater number of devices, input modes, and browsers than ever before.</p>
<p>&nbsp;</p>
<h3></h3></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_15">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_30  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_0  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon">&#xe00e;</span></span></div>
					<div class="et_pb_blurb_container">
						<h4 class="et_pb_module_header"><span>Get Responsive</span></h4>
						<div class="et_pb_blurb_description"><p>Responsive websites differ from normal websites in how ones web content is displayed; to where one&#8217;s mobile website looks very similar to one&#8217;s regular website. The difference is in how the content flows and sizes; text, images and navigation all adjust themselves dynamically to provide the best user experience possible given the device the user is accessing ones website with. When the browser view port changes, your text and graphics know what needs to be done to provide users with a consistent, usable browsing experience.</p>
<p>&nbsp;</p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_31  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_1  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon">&#x55;</span></span></div>
					<div class="et_pb_blurb_container">
						<h4 class="et_pb_module_header"><span>Get SEO</span></h4>
						<div class="et_pb_blurb_description"><p>Web design today must leverage ones SEO and there is absolutely no doubt that the responsiveness of your website has a role to play on ones rankings at Google, Bing, Yahoo and Ask. Responsive websites are becoming the norm these days, not because they gives designers and developers a few web editing jobs, but because it makes websites more accessible and thus they are able to reach a wider audience. That is why designing responsive websites (with an eye on SEO) is so important given the state of technology today.</p>
<p>&nbsp;</p>
<p>&nbsp;</p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_16">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_32  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_45  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>This website is responsive. Change the size of your browser window or access the site from your mobile phone or tablet.</h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_17">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_33  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_cta_0 et_pb_promo  et_pb_text_align_center et_pb_bg_layout_dark">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">Get Started</h2><div><p>Your just a phone call away from having a responsive website.</p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="tel:9706724401">Call Today!</a></div>
			</div>
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_34  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_5 et-waypoint">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="737" height="588" src="https://hqsecure.com/wp-content/uploads/2013/04/Responsive-Collage.png" alt="Responsive Website on Mobile Devices Collage" title="Responsive Website on Mobile Devices Collage" srcset="https://hqsecure.com/wp-content/uploads/2013/04/Responsive-Collage.png 737w, https://hqsecure.com/wp-content/uploads/2013/04/Responsive-Collage-300x239.png 300w" sizes="(max-width: 737px) 100vw, 737px" class="wp-image-700" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>The post <a href="https://hqsecure.com/responsive-web-design/">Responsive Web Design</a> appeared first on <a href="https://hqsecure.com">HQ Secure Global Internet</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
