<?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>design - identity design</title>
	<atom:link href="https://blog.identitydesign.us/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/category/design/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Sun, 11 May 2025 06:24:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.identitydesign.us/wp-content/uploads/2020/08/Screen-Shot-2020-08-08-at-1.08.24-AM-120x120.jpg</url>
	<title>design - identity design</title>
	<link>https://blog.identitydesign.us/category/design/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Safari Browser Phone Numbers Forcing Blue? Here&#8217;s How to Fix It</title>
		<link>https://blog.identitydesign.us/safari-phone-number-blue-fix/</link>
					<comments>https://blog.identitydesign.us/safari-phone-number-blue-fix/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 11 May 2025 06:23:26 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1931</guid>

					<description><![CDATA[<p>If you&#8217;re designing for mobile Safari and notice your phone numbers mysteriously turning blue and underlined, you&#8217;re not alone. By default, Safari automatically detects phone numbers and converts them into clickable links—often overriding your CSS styles in the process. The Problem Safari’s automatic phone number detection is helpful in some cases, but for designers and [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here’s How to Fix It</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here&#8217;s How to Fix It</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/" rel="bookmark" title="CSS: How to Make an Anchor Not Clickable in HTML">CSS: How to Make an Anchor Not Clickable in HTML</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>If you&#8217;re designing for mobile Safari and notice your phone numbers mysteriously turning blue and underlined, you&#8217;re not alone. By default, Safari automatically detects phone numbers and converts them into clickable links—often overriding your CSS styles in the process.</p>
<h2>The Problem</h2>
<p>Safari’s automatic phone number detection is helpful in some cases, but for designers and developers, it can break the intended layout or brand consistency—especially when you&#8217;re working with custom fonts or color schemes.</p>
<h2>The Simple Fix</h2>
<p>The good news is that you can disable this behavior with just one line of code in your <strong>&lt;head&gt;</strong> tag:</p>
<pre>
&lt;meta name="format-detection" content="telephone=no"&gt;
</pre>
<p>This tells Safari not to automatically detect and format telephone numbers, allowing you full control over how numbers appear on your site.</p>
<h2>Pro Tip</h2>
<p>If you still want numbers to be clickable but styled your way, you can manually wrap them in <strong>&lt;a href=&#8221;tel:1234567890&#8243;&gt;</strong> tags and apply your own CSS:</p>
<pre>
<a href="tel:1234567890" class="phone">(123) 456-7890</a>
</pre>
<p>Then style it however you like:</p>
<pre>
.phone {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
</pre>
<h2>Final Thoughts</h2>
<p>Safari’s auto-detection can be helpful for users, but problematic for designers. With a simple meta tag or some controlled styling, you can prevent unwanted design changes and keep your UI consistent across all browsers.</p>
<p>For more quick dev tips like this, check back at <a href="https://blog.identitydesign.us" target="_blank">blog.identitydesign.us</a></p><p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here’s How to Fix It</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here&#8217;s How to Fix It</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/" rel="bookmark" title="CSS: How to Make an Anchor Not Clickable in HTML">CSS: How to Make an Anchor Not Clickable in HTML</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/safari-phone-number-blue-fix/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: How to Make an Anchor Not Clickable in HTML</title>
		<link>https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/</link>
					<comments>https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 01 Oct 2024 18:43:52 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1889</guid>

					<description><![CDATA[<p>When building web pages, there are times you might want an anchor link (&#60;a&#62;) to be visible but non-functional. Perhaps you&#8217;re still working on that section of your website, or the link is for decorative purposes only. Whatever the reason, making an anchor not clickable is simple with a few CSS rules. The Code Snippet [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/" rel="bookmark" title="Make Clickable Link with JavaScript instead of HTML Anchor">Make Clickable Link with JavaScript instead of HTML Anchor</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/" rel="bookmark" title="CSS Only Animation: Zoom on Hover">CSS Only Animation: Zoom on Hover</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>When building web pages, there are times you might want an anchor link (<code>&lt;a&gt;</code>) to be visible but non-functional. Perhaps you&#8217;re still working on that section of your website, or the link is for decorative purposes only. Whatever the reason, making an anchor not clickable is simple with a few CSS rules.</p>
<h3>The Code Snippet</h3>
<p>Let’s start with a quick code snippet that makes an anchor tag unclickable:</p>
<pre>&lt;a href="#" class="inactive-link"&gt;Unclickable Link&lt;/a&gt;</pre>
<p>Then, in your CSS, add the following styles:</p>
<pre>.inactive-link {
    pointer-events: none;
    cursor: default;
}
</pre>
<h3>A Use Case for This Approach</h3>
<p>Let’s say you have a navigation menu, but one of the pages is under construction. You still want the link to be visible for design consistency, but don’t want users to interact with it. Here’s an example:</p>
<pre>&lt;nav&gt;
  &lt;ul&gt;
    &lt;li&gt;&lt;a href="/home"&gt;Home&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/about"&gt;About&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#" class="inactive-link"&gt;Contact (Coming Soon)&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
&lt;/nav&gt;
</pre>
<h3>Conclusion</h3>
<p>With just a couple of lines of CSS, you can make any anchor tag unclickable. It’s a quick and effective way to manage inactive or placeholder links on your website. Try this technique next time you need a link to be visible but non-functional!</p><p>The post <a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/" rel="bookmark" title="Make Clickable Link with JavaScript instead of HTML Anchor">Make Clickable Link with JavaScript instead of HTML Anchor</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/" rel="bookmark" title="CSS Only Animation: Zoom on Hover">CSS Only Animation: Zoom on Hover</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only Animation: Zoom on Hover</title>
		<link>https://blog.identitydesign.us/css-only-animation-zoom-on-hover/</link>
					<comments>https://blog.identitydesign.us/css-only-animation-zoom-on-hover/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 11 Apr 2024 08:31:49 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1874</guid>

					<description><![CDATA[<p>In today&#8217;s quick tip, we&#8217;ll dive into creating a dynamic &#8216;zoom on hover&#8217; effect that adds an interactive touch to images on your web pages. By incorporating the provided CSS, your images will elegantly scale up when hovered over. This effect, achieved with minimal code, is a fantastic way to enhance your website&#8217;s visual appeal [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/" rel="bookmark" title="CSS Only Animation: Image Swapping on Hover (Logo Swap)">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a></li>
<li><a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>In today&#8217;s quick tip, we&#8217;ll dive into creating a dynamic &#8216;zoom on hover&#8217; effect that adds an interactive touch to images on your web pages. By incorporating the provided CSS, your images will elegantly scale up when hovered over. This effect, achieved with minimal code, is a fantastic way to enhance your website&#8217;s visual appeal and engage your visitors.</p>
<h2>DEMO: Zoom on Hover</h2>
<div class="board"><img decoding="async" class="zoom-in" src="https://blog.identitydesign.us/wp-content/uploads/2024/04/dog.jpg"/></div>
<h2>HTML</h2>
<pre>
&lt;img class=&quot;zoom-in&quot; src=&quot;YOUR-IMAGE-PATH&quot;/&gt;
</pre>
<h2>CSS</h2>
<pre>
.zoom-in { transition:transform .2s; }
.zoom-in:hover { transform: scale(1.2); }
</pre>
<div class="clear"></div>
<style>
.board { display: flex;
    justify-content: center;
    padding: 120px;;
}
.single .entry-content img {
    border: 0px dotted #ccc;
}
.entry-content img { margin: AUTO; }
.board .zoom-in {
        max-width: 360px !important;
	transition:transform .2s;
}
.board .zoom-in:hover {
	transform: scale(1.2);</p>
<p>}
</style><p>The post <a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/" rel="bookmark" title="CSS Only Animation: Image Swapping on Hover (Logo Swap)">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a></li>
<li><a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-only-animation-zoom-on-hover/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only Animation: Image Swapping on Hover (Logo Swap)</title>
		<link>https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/</link>
					<comments>https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 09 Mar 2024 00:27:13 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1861</guid>

					<description><![CDATA[<p>Explore how to enhance your website&#8217;s interactivity with this simple guide on implementing a logo or image swap effect upon mouse hover. Ideal for web designers and developers, this tutorial includes step-by-step instructions, complete with HTML and CSS code snippets, to seamlessly integrate this dynamic visual cue into your web project. Perfect for adding that [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</a></li>
<li><a href="https://blog.identitydesign.us/css-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Explore how to enhance your website&#8217;s interactivity with this simple guide on implementing a logo or image swap effect upon mouse hover. Ideal for web designers and developers, this tutorial includes step-by-step instructions, complete with HTML and CSS code snippets, to seamlessly integrate this dynamic visual cue into your web project. Perfect for adding that extra flair to logos or images on your site, learn how to create a more engaging user experience with ease.</p>
<h2>DEMO: Swapping Logo/Image on Hover of Mouse</h2>
<div class="board">
<div class="swap"><a href="https://wedesignorange.com"><img decoding="async" class="main" src="https://blog.identitydesign.us/wp-content/uploads/2024/03/idwdo.png" alt="my-first-logo" /><img decoding="async" class="hover" src="https://blog.identitydesign.us/wp-content/uploads/2024/03/idwdo-smile.png" alt="my-second-logo" /></a>
</div>
</div>
<h2>HTML</h2>
<pre>
&lt;div class=&quot;swap&quot;&gt;
	&lt;a href=&quot;https://wedesignorange.com&quot;&gt;
		&lt;img class=&quot;main&quot; src=&quot;YOUR-MAIN-IMAGE&quot; /&gt;
		&lt;img class=&quot;hover&quot; src=&quot;YOUR-SWAPPING-IMAGE&quot; /&gt;
	&lt;/a&gt;
&lt;/div&gt;
</pre>
<h2>CSS</h2>
<pre>
.swap { height: 200px; width: 200px; position: relative; }
.swap img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	transition: opacity .9s;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.swap img.hover, .swap:hover img.main { opacity:0; }
.swap img.hover:hover { opacity:1; }
</pre>
<div class="clear"></div>
<style>
.board { display: flex;
    justify-content: center;
}
.single .entry-content img {
    border: 0px dotted #ccc;
}
.entry-content img { margin: AUTO; }
.swap { height: 150px; width: 150px; }
.swap { position: relative; }
.swap img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	transition: opacity .9s;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.swap img.hover { opacity:0; }
.swap:hover img.main { opacity:0; }
.swap img.hover:hover { opacity:1; }
</style><p>The post <a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</a></li>
<li><a href="https://blog.identitydesign.us/css-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Animation: Image Scrolling on Hover</title>
		<link>https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/</link>
					<comments>https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 11 Oct 2023 00:50:39 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1850</guid>

					<description><![CDATA[<p>In the ever-evolving world of web design, adding interactive and visually appealing elements to your website can greatly enhance the user experience. One exciting way to achieve this is by learning how to create an image scrolling effect on hover with CSS animation. With just a few lines of code, you can transform a static [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
<li><a href="https://blog.identitydesign.us/simple-hamburger-menu/" rel="bookmark" title="HTML-CSS-JS: Simple Hamburger Menu Expandable">HTML-CSS-JS: Simple Hamburger Menu Expandable</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>In the ever-evolving world of web design, adding interactive and visually appealing elements to your website can greatly enhance the user experience. One exciting way to achieve this is by learning how to create an image scrolling effect on hover with CSS animation. With just a few lines of code, you can transform a static image into an engaging and dynamic component that draws the viewer&#8217;s attention. So, let&#8217;s dive in and discover how to make your website come to life with CSS image scrolling on hover!</p>
<h2>DEMO: Mouse over to see the scrolling animation</h2>
<div class="board">
    <img decoding="async" src="https://wedesignorange.com/wp-content/uploads/sleekycase.jpg" alt="sleekycase.com website">
</div>
<h2>HTML</h2>
<pre>
&lt;div class=&quot;container&quot;&gt; 
	&lt;img src=&quot;YOUR-IMAGE&quot;&gt; 
&lt;/div&gt;</pre>
<h2>CSS</h2>
<pre>
img { 
	object-fit: cover;
	object-position: top;
	transition: ease-in-out 4s;
	width: 450px;
	height: 300px;
}
img:hover {
	object-position: bottom;
}
</pre>
<div class="clear"></div>
<style>
.board { background-color:#eee; }
img { 
	object-fit: cover;
	object-position: top;
	transition: ease-in-out 4s;
	width: 450px;
	height: 300px;
}
img:hover {
	object-position: bottom;
}
</style><p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
<li><a href="https://blog.identitydesign.us/simple-hamburger-menu/" rel="bookmark" title="HTML-CSS-JS: Simple Hamburger Menu Expandable">HTML-CSS-JS: Simple Hamburger Menu Expandable</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>HTML-CSS-JS: Simple Hamburger Menu Expandable</title>
		<link>https://blog.identitydesign.us/simple-hamburger-menu/</link>
					<comments>https://blog.identitydesign.us/simple-hamburger-menu/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 10 Dec 2022 01:16:30 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1812</guid>

					<description><![CDATA[<p>&#8220;How to create an expandable hamburger menu?&#8221; DEMO: How It Looks Home Section 1 Section 2 Section 3 HTML &#60;header class=&#34;header&#34;&#62; &#60;div class=&#34;header__menu menu&#34;&#62; &#60;div class=&#34;menu__icon&#34;&#62; &#60;span&#62;&#60;/span&#62; &#60;/div&#62; &#60;nav class=&#34;menu__body&#34;&#62; &#60;ul class=&#34;menu__list&#34;&#62; &#60;li&#62; &#60;a data-goto=&#34;#home&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Home&#60;/a&#62;&#60;/li&#62; &#60;li&#62; &#60;a data-goto=&#34;#section-1&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Section 1&#60;/a&#62;&#60;/li&#62; &#60;li&#62; &#60;a data-goto=&#34;#section-2&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Section 2&#60;/a&#62;&#60;/li&#62; &#60;li&#62; &#60;a data-goto=&#34;#section-3&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Section 3&#60;/a&#62;&#60;/li&#62; [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<blockquote><p> &#8220;How to create an expandable hamburger menu?&#8221; </p></blockquote>
<h2>DEMO: How It Looks</h2>
<div class="board">
<header class="header">
<div class="header__menu menu">
<div class="menu__icon"> <span></span> </div>
<nav class="menu__body">
<ul class="menu__list">
<li> <a data-goto="#home" href="" class="menu__link">Home</a></li>
<li> <a data-goto="#section-1" href="" class="menu__link">Section 1</a></li>
<li> <a data-goto="#section-2" href="" class="menu__link">Section 2</a></li>
<li> <a data-goto="#section-3" href="" class="menu__link">Section 3</a></li>
</ul>
</nav></div>
</header>
<p><script type="text/javascript" src="https://blog.identitydesign.us/js/hamburger.js"></script>
</div>
<h2>HTML</h2>
<pre>
&lt;header class=&quot;header&quot;&gt;
  &lt;div class=&quot;header__menu menu&quot;&gt;
    &lt;div class=&quot;menu__icon&quot;&gt; &lt;span&gt;&lt;/span&gt; &lt;/div&gt;
    &lt;nav class=&quot;menu__body&quot;&gt;
      &lt;ul class=&quot;menu__list&quot;&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#home&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#section-1&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Section 1&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#section-2&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Section 2&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#section-3&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Section 3&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/nav&gt;
  &lt;/div&gt;
&lt;/header&gt;
</pre>
<h2>CSS</h2>
<pre>
body {
	background-color: black; font-family:sans-serif; 
}
header a {
	color: #111 !important;
	text-decoration: none!important;
	font-weight: 200;
	font-size: 2.2rem;
	line-height: 1.2;
	display: block;
}
.header__menu {
	position: fixed;
	top: 34px;
	right: 30px;
	z-index: 10;
}
.menu__icon {
	z-index: 5;
	display: block;
	position: relative;
	width: 50px;
	height: 22px;
	cursor: pointer;
}
.menu__icon span, .menu__icon::before, .menu__icon::after {
	left: 0;
	position: absolute;
	height: 20%;
	width: 100%;
	transition: all 0.3s ease 0s;
	background-color: white;
}
.menu__icon::before, .menu__icon::after {
	content: '';
}
.menu__icon::before {
	top: 0;
}
.menu__icon::after {
	bottom: 0;
}
.menu__icon span {
	top: 50%;
	transform: scale(1) translate(0, -50%);
}
.menu__icon._active span {
	transform: scale(0) translate(0, -50%);
}
.menu__icon._active::before {
	top: 50%;
	transform: rotate(-45deg) translate(0, -50%);
}
.menu__icon._active::after {
	bottom: 50%;
	transform: rotate(45deg) translate(0, 50%);
}
.menu__body {
	position: fixed;
	top: 0;
	right: -99%;
	width: 34%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 100px 30px 30px 30px;
	transition: right 0.3s ease 0s;
	overflow: auto;
}
.menu__body._active {
	right: 0;
}
.menu__list > li {
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.menu__body ul {
	padding-left: 1rem;
	list-style: none;
}
</pre>
<h2>JavaScript</h2>
<p>Link the below external Javascript into the bottom of your HTML.</p>
<pre>
&lt;script type=&quot;text/javascript&quot; src=&quot;https://blog.identitydesign.us/js/hamburger.js&quot;&gt;&lt;/script&gt;
</pre>
<p>With having the hamburger menu on your navigation, your website could look more sophisticated and clean.</p>
<div class="clear"></div>
<style>
body {
	background-color: black; font-family:sans-serif; 
}
.board { background: white; }
header a {
	color: #fff !important;
	text-decoration: none!important;
	font-weight: 200;
	font-size: 2.2rem;
	line-height: 1.2;
	display: block;
}
.header__menu {
	position: static;
	top: 34px;
	right: 30px;
	z-index: 10;
}
.menu__icon {
	z-index: 5;
	display: block;
	position: relative;
	width: 50px;
	height: 22px;
	cursor: pointer;
text-align: center;
    margin: auto;
}
.menu__icon span, .menu__icon::before, .menu__icon::after {
	left: 0;
	position: absolute;
	height: 20%;
	width: 100%;
	transition: all 0.3s ease 0s;
	background-color: black;
}
.menu__icon::before, .menu__icon::after {
	content: '';
}
.menu__icon::before {
	top: 0;
}
.menu__icon::after {
	bottom: 0;
}
.menu__icon span {
	top: 50%;
	transform: scale(1) translate(0, -50%);
}
.menu__icon._active span {
	transform: scale(0) translate(0, -50%);
}
.menu__icon._active::before {
	top: 50%;
	transform: rotate(-45deg) translate(0, -50%);
}
.menu__icon._active::after {
	bottom: 50%;
	transform: rotate(45deg) translate(0, 50%);
}
.menu__body {
	position: fixed;
	top: 0;
	right: -99%;
	width: 34%;
	height: 100%;
	background-color: rgba(60, 60, 60, 1);
        background-color: blueviolet;
	padding: 100px 30px 30px 30px;
	transition: right 0.3s ease 0s;
	overflow: auto;
        z-index: 1;
}
.menu__body._active {
	right: 0;
}
.menu__list > li {
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.menu__body ul {
	padding-left: 1rem;
	list-style: none;
}
</style><p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/simple-hamburger-menu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Freebies: Kebab Kabob Display Menu Template (PSD)</title>
		<link>https://blog.identitydesign.us/freebies-kebab-display-template/</link>
					<comments>https://blog.identitydesign.us/freebies-kebab-display-template/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 12 Jan 2022 09:03:56 +0000</pubDate>
				<category><![CDATA[design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Resources]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1682</guid>

					<description><![CDATA[<p>The &#8220;Kebab&#8221; or &#8220;Kabob&#8221; Mediterranean food display menu template in Photoshop (PSD) by Identity Design is designed in high resolution and ready to use. It&#8217;s layered in PSD and available for a free download. Terms All Identity Design Freebies can be used for both personal and commercial use. You may not redistribute or resell Identity [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/freebies-kebab-display-template/">Freebies: Kebab Kabob Display Menu Template (PSD)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/freebies-kebab-display-template/">Freebies: Kebab Kabob Display Menu Template (PSD)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/free-car-cover-website-template/" rel="bookmark" title="Freebies: Car Cover Website Mock Up Template (PSD)">Freebies: Car Cover Website Mock Up Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/" rel="bookmark" title="Freebies: Foodie Website Mock Up Template (PSD)">Freebies: Foodie Website Mock Up Template (PSD)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob.jpg"><img fetchpriority="high" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob.jpg" alt="Kebab Display Menu Template" width="1200" height="675" class="aligncenter size-full wp-image-1684" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob.jpg 1200w, https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob-300x169.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob-1024x576.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob-768x432.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob-624x351.jpg 624w" sizes="(max-width: 1200px) 100vw, 1200px" /></a> </p>
<p>The &#8220;Kebab&#8221; or &#8220;Kabob&#8221; Mediterranean food display menu template in Photoshop (PSD) by <a href="http://identitydesign.us/" target="_blank" rel="noopener">Identity Design</a> is designed in high resolution and ready to use. It&#8217;s layered in PSD and available for a free download. </p>
<h5>Terms</h5>
<ul>
<li>All Identity Design Freebies can be used for both <strong>personal</strong> and <strong>commercial use</strong>.</li>
<li>You may not redistribute or resell Identity Design Freebies in any shape or form.</li>
</ul>
<!-- Widget Shortcode --><div id="custom_html-2" class="widget_text widget widget_custom_html widget-shortcode area-arbitrary "><div class="textwidget custom-html-widget"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8255226778912403"
     crossorigin="anonymous"></script>
<!-- iiiji_CTA_468 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:468px;height:60px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="6320733927"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div><!-- /Widget Shortcode -->
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'Kebab-Display', 'https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob.psd.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2022/01/id-displaymockup-kabob.psd.zip">Download</a></div><p>The post <a href="https://blog.identitydesign.us/freebies-kebab-display-template/">Freebies: Kebab Kabob Display Menu Template (PSD)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/freebies-kebab-display-template/">Freebies: Kebab Kabob Display Menu Template (PSD)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/free-car-cover-website-template/" rel="bookmark" title="Freebies: Car Cover Website Mock Up Template (PSD)">Freebies: Car Cover Website Mock Up Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/" rel="bookmark" title="Freebies: Foodie Website Mock Up Template (PSD)">Freebies: Foodie Website Mock Up Template (PSD)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/freebies-kebab-display-template/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Web Developer / Designer Bookmarks</title>
		<link>https://blog.identitydesign.us/bookmarks/</link>
					<comments>https://blog.identitydesign.us/bookmarks/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 05 Jan 2022 01:32:31 +0000</pubDate>
				<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Scrap]]></category>
		<category><![CDATA[Top10]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[Stock Photo]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1597</guid>

					<description><![CDATA[<p>Get Inspired! Behance Trendy portfolios. Showcase. Adobe. dribbble World designers. Top creatives. awwwards Awards of design. Cyrillic Design Awards of design. Qode Interactive High quality WordPress Templates. Pinterest Image sharing. Social Media. Design Resources Unsplash Freely-usable photo library. Freepik Powerful vector library. Creative Market 6 free goods. Every week. Pixelbuddha Free &#038; premium resources. Google [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
]]></description>
										<content:encoded><![CDATA[<style>
#secondary, #menu-example-pages, .site-description { display:none !important; } 
#primary { width: 100%; }</p>
<p>body { font-family: Helvetica, sans-serif; }
.site-title a { font-family: 'Bebas Neue', cursive; color:#222; }
.site-description { color: #555; }
.wrap-header { background: transparent; }
.yarpp-related { display:none; }
h3, .entry-content h3 { font-size: 11pt; }
.entry-content .page-item p { font-size: 9pt !important; margin-bottom: 2%; margin-top: 1%; }
.page-item {
    width: unset;
    display: unset; 
    float: none; 
    border: 0px solid #ccc;
}
.page-item a {
    overflow: auto;
    display: unset;</p>
<p>}
.display-posts-listing img {
    float: none;
    margin: 0 0 10px 0;
    width: 100%; 
    border: 1px solid #ccc !important;
    margin: 0px auto 0px;
    display: unset;
    height: 202px;
    object-fit: cover;
}
</style>
<p><!--p>For graphic / web designers and development industry about 15 years. I've been collecting designer related bookmarks for years, but a lot of things have been changed including tools, interests and style.</p-->
<h2>Get Inspired!</h2>
<div class="display-posts-listing">
<div class="page-item">
<h3> Behance </h3>
<p> <a href="https://www.behance.net/" target="blank" rel="noopener"><img decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/behance.png" alt="behance" class="aligncenter size-medium wp-image-1611" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/behance.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/behance-300x165.png 300w" sizes="(max-width: 536px) 100vw, 536px" /></a></p>
<p>Trendy portfolios. Showcase. Adobe. </p>
</div>
<div class="page-item">
<h3>dribbble</h3>
<p><a href="https://dribbble.com/" target="blank" rel="noopener"><img decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/dribbble.png" alt="dribbble" class="aligncenter size-medium wp-image-1603" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/dribbble.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/dribbble-300x165.png 300w" sizes="(max-width: 536px) 100vw, 536px" /></a></p>
<p>World designers. Top creatives.</p>
</div>
<div class="page-item">
<h3>awwwards</h3>
<p><a href="https://www.awwwards.com/" target="blank" rel="noopener"> <img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/awwards.png" alt="awwards" class="aligncenter size-full wp-image-1668" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/awwards.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/awwards-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Awards of design.</p>
</div>
<div class="page-item">
<h3>Cyrillic Design</h3>
<p><a href="https://cyrillic.design/" target="blank" rel="noopener"> <img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/cyrillic.png" alt="cyrillic" class="aligncenter size-full wp-image-1667" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/cyrillic.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/cyrillic-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /> </a></p>
<p>Awards of design.</p>
</div>
<div class="page-item">
<h3>Qode Interactive</h3>
<p> <a href="https://qodeinteractive.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/qode.png" alt="qode interactive" width="536" height="294" class="aligncenter size-full wp-image-1719" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/qode.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/qode-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>High quality WordPress Templates.</p>
</div>
<div class="page-item">
<h3>Pinterest</h3>
<p> <a href="https://www.pinterest.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/pinterest.png" alt="pinterest" class="aligncenter size-medium wp-image-1613" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/pinterest.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/pinterest-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Image sharing. Social Media.</p>
</div>
</div>
<h2>Design Resources</h2>
<div class="display-posts-listing">
<div class="page-item">
<h3> Unsplash </h3>
<p> <a href="https://unsplash.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/unsplash.png" alt="unsplash" class="aligncenter size-medium wp-image-1637" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/unsplash.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/unsplash-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Freely-usable photo library. </p>
</div>
<div class="page-item">
<h3> Freepik </h3>
<p> <a href="https://www.freepik.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/freepik.png" alt="freepik" class="aligncenter size-medium wp-image-1641" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/freepik.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/freepik-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Powerful vector library.</p>
</div>
<div class="page-item">
<h3> Creative Market </h3>
<p> <a href="https://creativemarket.com/free-goods" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/creativemarket.png" alt="Creative Market" class="aligncenter size-medium wp-image-1639" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/creativemarket.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/creativemarket-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>6 free goods. Every week. </p>
</div>
<div class="page-item">
<h3> Pixelbuddha </h3>
<p> <a href="https://pixelbuddha.net/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/pixelbuddha.png" alt="pixelbuddha" class="aligncenter size-medium wp-image-1636" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/pixelbuddha.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/pixelbuddha-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Free &#038; premium resources. </p>
</div>
<div class="page-item">
<h3> Google Fonts </h3>
<p> <a href="https://fonts.google.com/" target="blank" rel="noopener"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/web-fontgoogle.png" alt="Google Fonts" class="aligncenter size-medium" /></a> </p>
<p>Free web fonts. Downloadable. </p>
</div>
<div class="page-item">
<h3> Material Icons </h3>
<p> <a href="https://fonts.google.com/icons?selected=Material+Icons" target="blank" rel="noopener"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/web-material-icons.jpg" alt="Material Icons" class="aligncenter size-medium" /></a> </p>
<p>Free web icons from Google. </p>
</div>
<div class="page-item">
<h3> Bensound </h3>
<p> <a href="https://www.bensound.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/bensound.png" alt="bensound" width="536" height="294" class="aligncenter size-full wp-image-1739" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/bensound.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/bensound-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Royalty free music. </p>
</div>
</div>
<h2>Tools</h2>
<div class="display-posts-listing">
<div class="page-item">
<h3>Pingdom Website Speed Test</h3>
<p><a href="https://tools.pingdom.com/"> <img loading="lazy" decoding="async" width="1024" height="768" src="https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom.png" alt="pingdom" class="aligncenter size-medium wp-image-1454" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom-300x225.png 300w, https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom-768x576.png 768w, https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom-624x468.png 624w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Analyze web. Speed test.</p>
</div>
<div class="page-item">
<h3>Whois Lookup</h3>
<p><a href="https://whois.domaintools.com/"> <img loading="lazy" decoding="async" width="1024" height="768" src="https://blog.identitydesign.us/wp-content/uploads/2021/07/whois.jpeg" alt="Whois Lookup" class="aligncenter size-medium wp-image-1460" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/07/whois.jpeg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/07/whois-300x225.jpeg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/07/whois-768x576.jpeg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/07/whois-624x468.jpeg 624w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Find IP. DNS</p>
</div>
<div class="page-item">
<h3>Custom Shape Dividers</h3>
<p><a href="https://www.shapedivider.app/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/customshape.png" alt="customshape" class="aligncenter size-medium wp-image-1599" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/customshape.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/customshape-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Custom dividers for web. SVG</p>
</div>
<div class="page-item">
<h3>Cool Backgrounds</h3>
<p><a href="https://coolbackgrounds.io/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/coolbackgrounds.png" alt="coolbackgrounds" class="aligncenter size-medium wp-image-1602" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/coolbackgrounds.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/coolbackgrounds-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Customize backgrounds in PNG. Abstract. Lines. Gradient.</p>
</div>
<div class="page-item">
<h3>themer</h3>
<p><a href="https://themer.dev/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/themer.png" alt="themer" class="aligncenter size-medium wp-image-1609" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/themer.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/themer-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Generates colors </p>
</div>
<div class="page-item">
<h3>Web Fundamentals</h3>
<p><a href="https://andreasbm.github.io/web-skills/" target="blank" rel="noopener"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/web-fundamentals.png" alt="Web Fundamentals" class="aligncenter size-medium" /></a></p>
<p>Web skills learning. HTML, CSS, JavaScript and browser </p>
</div>
</div><p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/bookmarks/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Freebies: Car Cover Website Mock Up Template (PSD)</title>
		<link>https://blog.identitydesign.us/free-car-cover-website-template/</link>
					<comments>https://blog.identitydesign.us/free-car-cover-website-template/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 25 Dec 2021 19:55:44 +0000</pubDate>
				<category><![CDATA[design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Resources]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1654</guid>

					<description><![CDATA[<p>The Car Cover Website Design mockup in Photoshop (PSD) by Identity Design is designed in high quality 2400 pixel in width. This clean &#038; sophisticated design is ready to use on your own design before it&#8217;s cut up in HTML. It&#8217;s layered in PSD and available for a free download. Terms All Identity Design Freebies [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/free-car-cover-website-template/">Freebies: Car Cover Website Mock Up Template (PSD)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/free-car-cover-website-template/">Freebies: Car Cover Website Mock Up Template (PSD)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/" rel="bookmark" title="Freebies: Foodie Website Mock Up Template (PSD)">Freebies: Foodie Website Mock Up Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-weight-loss-diet-health-website-design-mock-up-psd/" rel="bookmark" title="Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)">Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-scaled.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-scaled.jpg" alt="Car Cover Website Template" width="918" height="2560" class="aligncenter size-full wp-image-1656" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-scaled.jpg 918w, https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-108x300.jpg 108w, https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-367x1024.jpg 367w, https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-768x2141.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-551x1536.jpg 551w, https://blog.identitydesign.us/wp-content/uploads/2021/12/WEB-Mockup-Carcover-624x1740.jpg 624w" sizes="auto, (max-width: 918px) 100vw, 918px" /></a></p>
<p>The Car Cover Website Design mockup in Photoshop (PSD) by <a href="http://identitydesign.us/" target="_blank" rel="noopener">Identity Design</a> is designed in high quality 2400 pixel in width. This clean &#038; sophisticated design is ready to use on your own design before it&#8217;s cut up in HTML. It&#8217;s layered in PSD and available for a free download. </p>
<h5>Terms</h5>
<ul>
<li>All Identity Design Freebies can be used for both <strong>personal</strong> and <strong>commercial use</strong>.</li>
<li>You may not redistribute or resell Identity Design Freebies in any shape or form.</li>
</ul>
<!-- Widget Shortcode --><div id="custom_html-2" class="widget_text widget widget_custom_html widget-shortcode area-arbitrary "><div class="textwidget custom-html-widget"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8255226778912403"
     crossorigin="anonymous"></script>
<!-- iiiji_CTA_468 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:468px;height:60px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="6320733927"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div><!-- /Widget Shortcode -->
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'CarCoverWebMock', 'https://blog.identitydesign.us/wp-content/uploads/2021/12/id-webmockup-carcover.psd.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2021/12/id-webmockup-carcover.psd.zip">Download</a></div><p>The post <a href="https://blog.identitydesign.us/free-car-cover-website-template/">Freebies: Car Cover Website Mock Up Template (PSD)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/free-car-cover-website-template/">Freebies: Car Cover Website Mock Up Template (PSD)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/" rel="bookmark" title="Freebies: Foodie Website Mock Up Template (PSD)">Freebies: Foodie Website Mock Up Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-weight-loss-diet-health-website-design-mock-up-psd/" rel="bookmark" title="Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)">Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/free-car-cover-website-template/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Change the Order of Artboards on Adobe Illustrator</title>
		<link>https://blog.identitydesign.us/change-artboards-order-illustrator/</link>
					<comments>https://blog.identitydesign.us/change-artboards-order-illustrator/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 08 Oct 2021 23:15:31 +0000</pubDate>
				<category><![CDATA[design]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1580</guid>

					<description><![CDATA[<p>Adobe Illustrator can create multiple paged PDF using multiple artboards. If you need to rearrange the order of pages, here is how-to. Artboards are like Canvas in Adobe Photoshop. The two-digit number starting on the left of each artboard is the order of the content in PDF. To change the order of artboards, open up [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/" rel="bookmark" title="How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</a></li>
<li><a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/" rel="bookmark" title="Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</a></li>
<li><a href="https://blog.identitydesign.us/solved-adobe-creative-cloud-access-to-manage-apps-permission-issue/" rel="bookmark" title="Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue">Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Adobe Illustrator can create multiple paged PDF using multiple artboards. If you need to rearrange the order of pages, here is how-to.</p>
<p>Artboards are like Canvas in Adobe Photoshop.</p>
<p> <img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-1024x394.png" alt="Artboards" width="625" height="240" class="aligncenter size-large wp-image-1583" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-1024x394.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-300x115.png 300w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-768x295.png 768w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-624x240.png 624w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards.png 1452w" sizes="auto, (max-width: 625px) 100vw, 625px" /> </p>
<p>The two-digit number starting on the left of each artboard is the order of the content in PDF. To change the order of artboards, open up the Artboard Palette and drag layers as you want. </p>
<h2><span>1</span> Open -> <code>Window</code> (on top menu bar) -> choose <code>Artboards</code></h2>
<p> <img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window-278x300.png" alt="how to open Artboard" width="278" height="300" class="aligncenter size-medium wp-image-1582" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window-278x300.png 278w, https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window-624x675.png 624w, https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window.png 766w" sizes="auto, (max-width: 278px) 100vw, 278px" /> </p>
<h2><span>2</span> Change the Order of Artboards by Dragging the Layers</h2>
<p> <img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-300x297.png" alt="Artboard Palette" width="300" height="297" class="aligncenter size-medium wp-image-1581" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-300x297.png 300w, https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-150x150.png 150w, https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-120x120.png 120w, https://blog.identitydesign.us/wp-content/uploads/2021/10/palette.png 556w" sizes="auto, (max-width: 300px) 100vw, 300px" /> </p>
<p>Just need to save your document in PDF.</p><p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/" rel="bookmark" title="How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</a></li>
<li><a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/" rel="bookmark" title="Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</a></li>
<li><a href="https://blog.identitydesign.us/solved-adobe-creative-cloud-access-to-manage-apps-permission-issue/" rel="bookmark" title="Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue">Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/change-artboards-order-illustrator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
