<?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>digital-workshop</title>
	<atom:link href="http://www.digital-workshop.at/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digital-workshop.at</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 10:25:23 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Contact Form 7 weiterleitung</title>
		<link>http://www.digital-workshop.at/contact-form-7-weiterleitung/</link>
		<comments>http://www.digital-workshop.at/contact-form-7-weiterleitung/#comments</comments>
		<pubDate>Mon, 13 May 2013 08:13:22 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=5669</guid>
		<description><![CDATA[<p>Öfters benötigt man eine Weiterleitung von Contact Form 7 um zb. eine Dankesseite einzubauen oder einfach den Google Conversion Code einzubinden. Dies kann man einfach mit diesen Shortcode machen. In</p><p>The post <a href="http://www.digital-workshop.at/contact-form-7-weiterleitung/">Contact Form 7 weiterleitung</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Öfters benötigt man eine Weiterleitung von Contact Form 7 um zb. eine Dankesseite einzubauen oder einfach den Google Conversion Code einzubinden.<br />
Dies kann man einfach mit diesen Shortcode machen.<br />
<span id="more-5669"></span></p>
<p>In das Feld &#8220;Zusätzliche Einstellungen&#8221; eintragen:</p>
<pre class="brush: plain; title: ; notranslate">on_sent_ok: &quot;location = 'http://www.deinedankesseite/';&quot;</pre>
<p>The post <a href="http://www.digital-workshop.at/contact-form-7-weiterleitung/">Contact Form 7 weiterleitung</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/contact-form-7-weiterleitung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contact Form 7 Stylen</title>
		<link>http://www.digital-workshop.at/contact-form-7-stylen/</link>
		<comments>http://www.digital-workshop.at/contact-form-7-stylen/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 14:44:11 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS/HTML]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=5653</guid>
		<description><![CDATA[<p>Ich nutze ja sehr gerne das Contact Form 7 Plugin für WordPress. Leider sieht das nicht sehr ansprechend aus. Das Formular kann man aber recht einfach selber anpassen.. Wichtig ist</p><p>The post <a href="http://www.digital-workshop.at/contact-form-7-stylen/">Contact Form 7 Stylen</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Ich nutze ja sehr gerne das Contact Form 7 Plugin für WordPress.<br />
Leider sieht das nicht sehr ansprechend aus. Das Formular kann man aber recht einfach selber anpassen..</p>
<p><span id="more-5653"></span><br />
<img title="Weiterlesen …" alt="" src="http://digital-workshop.at/tools/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" />Wichtig ist das ihr bei der Formular Erstellung keine Zeilenumbrüche macht wie von Haus aus vorgegeben.</p>
<p><img class="alignleft size-full wp-image-5654" alt="style-contact-form7-2" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2013/03/style-contact-form7-2.jpg" width="800" height="579" /></p>
<p>Dann einfach in euer Stylesheet folgende Zeilen eintragen:</p>
<pre class="brush: css; title: ; notranslate">
/* CONTACT FORM 7 CUSTOM STYLE */

form {
}
form label {
}
form input[type=&quot;text&quot;] {
}
form textarea {
}
form select {
}
form input[type=&quot;checkbox&quot;] {
}
form input[type=&quot;radio&quot;] {
}
form input[type=&quot;submit&quot;] {
}
form input[type=&quot;email&quot;] {
	 background: linear-gradient(-90deg, #F7F7F7, #FCFCFC) repeat scroll 0 0 transparent;
    border: 1px solid #BDC1C7;
    border-radius: 4px 4px 4px 4px; 
    box-shadow: 0 0 0 #ccc;
    color: #363636;
    float: right;
    font-family: Arial;
    font-size: 15px;
    line-height: 1;
    padding: 7px;
    position: relative;
    width: 63%;
    -webkit-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
        box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
}
div.wpcf7 {
    background: linear-gradient(-90deg, #F8F8F8, #ECECEC) repeat scroll 0 0 transparent;
    border-color: #EBEBEB;
    border-radius: 8px 8px 8px 8px;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-family: Arial;
    font-size: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 20px!important;
    position: relative;
}
 
.wpcf7 p {
    clear: both;
    line-height: 25px;
    margin: 0 0 1.5em;
    overflow: hidden;
    position: relative;
    color: #333;
    font-size: 18px;
}
.wpcf7 br {
}
.wpcf7 span.wpcf7-form-control-wrap {
    position: static;
    
}
#content .wpcf7 input, #content .wpcf7 textarea {
    color: #363636;
    font-size: 15px;
    line-height: 1;
}
.wpcf7 input[type=&quot;text&quot;] {
    background: linear-gradient(-90deg, #F7F7F7, #FCFCFC) repeat scroll 0 0 transparent;
    border: 1px solid #BDC1C7;
    border-radius: 4px 4px 4px 4px; 
    box-shadow: 0 0 0 #ccc;
    color: #363636;
    float: right;
    font-family: Arial;
    font-size: 15px;
    line-height: 1;
    padding: 7px;
    position: relative;
    width: 63%;
    -webkit-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
        box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
     
}
.wpcf7 textarea {
    background: linear-gradient(-90deg, #F7F7F7, #FCFCFC) repeat scroll 0 0 transparent;
    border: 1px solid #BDC1C7;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 0 0 #FFFFFF;
    color: #363636;
    float: right;
    font-size: 15px;  
    padding: 7px;
    position: relative;
    width: 63%;
    -webkit-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
        box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
}
.wpcf7 select {
    background: linear-gradient(-90deg, #F7F7F7, #FCFCFC) repeat scroll 0 0 transparent;
    border: 1px solid #BDC1C7;
    border-radius: 4px 4px 4px 4px;
    color: #363636;
    float: right;
    font-size: 15px;
    padding: 4px;
    height: 30px;
    line-height: 1;
    position: relative;
    width: 65.5%;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
        box-shadow: 0 10px 6px -6px rgba(0,0,0,0.3);
}
.wpcf7 .wpcf7-list-item {
    b
    display: block;
    float: left;
    position: relative;
    width: 66%;
    margin-left: 0px;
}
.wpcf7 .wpcf7-quiz-label {
    display: block;
}
input.wpcf7-quiz[type=&quot;text&quot;] {
}
.wpcf7 img.wpcf7-captchac {
    border-color: #FFFFFF;
    border-style: solid;
    border-width: 4px;
    display: block;
    float: left;
    margin: 2px 0 0;
    padding: 0;
}
 
.wpcf7 input.wpcf7-submit[type=&quot;submit&quot;] {
   font-size: 15px;
    color: #6f6f6f;
    padding: 10px 20px;
    background: -moz-linear-gradient(
        top,
        #ffde78 0%,
        #FFCA23);
    background: -webkit-gradient(
        linear, left top, left bottom,
        from(#ffde78),
        to(#FFCA23));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 1px solid #efb500;
    -moz-box-shadow:
        0px 1px 3px rgba(000,000,000,0.5),
        inset 0px 0px 1px rgba(255,255,255,0.5);
    -webkit-box-shadow:
        0px 1px 3px rgba(000,000,000,0.5),
        inset 0px 0px 1px rgba(255,255,255,0.5);
    box-shadow:
        0px 1px 3px rgba(000,000,000,0.5),
        inset 0px 0px 1px rgba(255,255,255,0.5);
        float: right;
}
.wpcf7 input.wpcf7-submit[type=&quot;submit&quot;]:hover {
     background: -moz-linear-gradient(
        top,
        #FFCA23 0%,
         #ffde78);
    background: -webkit-gradient(
        linear, left top, left bottom,
        from(#FFCA23),
        to( #ffde78));
        color: #25408D;
        float: right;
        cursor: pointer;
}
span.wpcf7-not-valid-tip {
    background-color: red;
   background-color: rgba(255, 0, 0, 0.3);
   color: rgba(255, 0, 0, 0.3);
    border-radius: 4px 4px 4px 4px;
    border-style: none;
    display: block;
    left: 50%!important;
    padding: 4px 1% 5px;
    position: absolute;
    right: 0;
    text-indent: 9999px;
    top: 0px!important;
    width: 65%;
    color: red;
}
span.wpcf7-not-valid-tip-no-ajax {
    color: #E87676;
    display: block;
    float: right;
    text-align: right;
    width: 63%;
}
div.wpcf7-response-output {
    background-color: #2B2B2B;
    border-radius: 6px 6px 6px 6px;
    border-style: none;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    position: relative;
}
div.wpcf7-mail-sent-ok {
    color: #88FF80;
}
div.wpcf7-validation-errors, div.wpcf7-mail-sent-ng {
    color: red;
}
span.wpcf7-not-valid-tip {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #FF0000;
    font-size: 10pt;
    left: 34%!important;
    padding: 2px;
    position: absolute;
    top: 20%;
    height: 27px;
    width: auto!important;
    z-index: 100;
}
/* CONTACT FORM 7 CUSTOM STYLE END */
</pre>
<p>The post <a href="http://www.digital-workshop.at/contact-form-7-stylen/">Contact Form 7 Stylen</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/contact-form-7-stylen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linktipp: Warum kostet Webdesign keine 700€</title>
		<link>http://www.digital-workshop.at/linktipp-warum-kostet-webdesign-keine-700e/</link>
		<comments>http://www.digital-workshop.at/linktipp-warum-kostet-webdesign-keine-700e/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 10:46:41 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linktipp]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=5646</guid>
		<description><![CDATA[<p>Super Blog Artikel zu dem Thema &#8220;Webdesign Preis&#8221;. So wahr und leider so unverstanden.. &#10149; http://liechtenecker.at/warum-webdesign-nicht-700e-kostet/#blog-article &#160;</p><p>The post <a href="http://www.digital-workshop.at/linktipp-warum-kostet-webdesign-keine-700e/">Linktipp: Warum kostet Webdesign keine 700€</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Super Blog Artikel zu dem Thema &#8220;Webdesign Preis&#8221;.</p>
<p>So wahr und leider so unverstanden..</p>
<p>&#10149; <a href="http://liechtenecker.at/warum-webdesign-nicht-700e-kostet/#blog-article">http://liechtenecker.at/warum-webdesign-nicht-700e-kostet/#blog-article</a></p>
<p>&nbsp;</p>
<p>The post <a href="http://www.digital-workshop.at/linktipp-warum-kostet-webdesign-keine-700e/">Linktipp: Warum kostet Webdesign keine 700€</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/linktipp-warum-kostet-webdesign-keine-700e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arbeiten im Stehen? Ja ich bin dabei</title>
		<link>http://www.digital-workshop.at/arbeiten-im-stehen-ja-ich-bin-dabei/</link>
		<comments>http://www.digital-workshop.at/arbeiten-im-stehen-ja-ich-bin-dabei/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 10:44:29 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Dies & Das]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=5642</guid>
		<description><![CDATA[<p>Da ich ja jetzt schon öfters Personen in meinem Arbeitsbereich gesehen (perun.net, lifehacker.com)habe die auch im Stehen, oder zumindest wie ich teils teils arbeiten, möchte ich natürlich euch meinen Arbeitsplatz</p><p>The post <a href="http://www.digital-workshop.at/arbeiten-im-stehen-ja-ich-bin-dabei/">Arbeiten im Stehen? Ja ich bin dabei</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Da ich ja jetzt schon öfters Personen in meinem Arbeitsbereich gesehen (<a href="http://www.perun.net/2013/01/30/arbeiten-im-stehen/">perun.net</a>, <a href="http://lifehacker.com/5929765/make-yourself-a-standing-desk-this-weekend">lifehacker.com</a>)habe die auch im Stehen, oder zumindest wie ich teils teils arbeiten, möchte ich natürlich euch meinen Arbeitsplatz nicht vorenthalten.</p>
<p>The post <a href="http://www.digital-workshop.at/arbeiten-im-stehen-ja-ich-bin-dabei/">Arbeiten im Stehen? Ja ich bin dabei</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/arbeiten-im-stehen-ja-ich-bin-dabei/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sync Sublime Text 2 mit Dropbox</title>
		<link>http://www.digital-workshop.at/sync-sublime-text-2/</link>
		<comments>http://www.digital-workshop.at/sync-sublime-text-2/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 16:36:56 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[Ordner abgleichen]]></category>
		<category><![CDATA[Sublime Text 2]]></category>
		<category><![CDATA[Sync]]></category>
		<category><![CDATA[synchronisieren]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=5601</guid>
		<description><![CDATA[<p>Da ich in der Agentur und Zuhause den fabelhaften &#8220;Sublime Text 2&#8221; Editor nutze liegt es ja nahe das die Einstellungen und &#8220;Snippets&#8221; Syncronisiert werden sollten. Dies geht am einfachsten</p><p>The post <a href="http://www.digital-workshop.at/sync-sublime-text-2/">Sync Sublime Text 2 mit Dropbox</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Da ich in der Agentur und Zuhause den fabelhaften &#8220;<a href="http://www.sublimetext.com/" target="_blank">Sublime Text 2</a>&#8221; Editor nutze liegt es ja nahe das die Einstellungen und &#8220;Snippets&#8221; Syncronisiert werden sollten.</p>
<p>Dies geht am einfachsten mit einem Cloud Speicherplatz wie zb. <a href="http://db.tt/g4CjdMX" target="_blank">Dropbox</a>.</p>
<p>Windows Ordner mit Dopbox synchronisieren macht ihr mit einen Kommandozeilen Befehl in Windows (Symbolischen Link ).<br />
Dies ist aber für viele ein wenig kompliziert. Es geht aber auch leichter:</p>
<h3><strong>Schritt 1:</strong></h3>
<p>Ladet euch die neuste Version der Software &#8221;<a href="http://satyadeepk.in/dropbox-folder-sync/" target="_blank">Dropbox Folder Sync</a>&#8221; herunter.</p>
<p>Startet diese und legt den Dropbox Pfad fest.</p>
<p><img class="size-full wp-image-5623 aligncenter" alt="Dropbox-Syncronisieren" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2013/01/Dropbox-Syncronisieren.jpg" width="493" height="231" /></p>
<h3><strong>Schritt 2:</strong></h3>
<p>Klickt dann mit der rechten Maustaste auf euren &#8220;Packages&#8221; Ordner von Sublime Text 2 (<em>C:\Benutzer\[username]\AppData\Roaming\Sublime Text 2\Packages</em>) und dann auf &#8220;«Sync with Dropbox»&#8221;.</p>
<p><img class="size-full wp-image-5624 aligncenter" alt="Dropbox-Syncronisieren-2" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2013/01/Dropbox-Syncronisieren-2.jpg" width="357" height="152" /></p>
<h3><strong>Schritt 4:</strong></h3>
<p>Fertig das wars schon.</p>
<h3><strong>Schritt 5:</strong></h3>
<p>Das selbe macht ihr nun auch auch euren zweiten Arbeitsplatz und alles wird Synchronisiert.</p>
<p>The post <a href="http://www.digital-workshop.at/sync-sublime-text-2/">Sync Sublime Text 2 mit Dropbox</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/sync-sublime-text-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dashboard Widgets entfernen</title>
		<link>http://www.digital-workshop.at/dashboard-widgets-entfernen/</link>
		<comments>http://www.digital-workshop.at/dashboard-widgets-entfernen/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 18:14:15 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=5559</guid>
		<description><![CDATA[<p>Ich versuche für meine Kunden WordPress immer so einfach wie nur möglich zu gestalten. Dazu gehört auch ein aufgeräumtes Dashboard, da diese Informationen für den Redakteur oft zu viel sind.</p><p>The post <a href="http://www.digital-workshop.at/dashboard-widgets-entfernen/">Dashboard Widgets entfernen</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Ich versuche für meine Kunden WordPress immer so einfach wie nur möglich zu gestalten.<br />
Dazu gehört auch ein aufgeräumtes Dashboard, da diese Informationen für den Redakteur oft zu viel sind.</p>
<p>Mit diesem Snippet kann man die Dashboard Widgets  entfernen.<br />
<span id="more-5559"></span><br />
Einfach in die functions.php einfügen:</p>
<pre class="brush: text; gutter: true">// remove standard dashboard-widgets
function remove_dashboard_widgets() {
  global $wp_meta_boxes;
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;normal&#039;][&#039;core&#039;][&#039;dashboard_plugins&#039;]);
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;normal&#039;][&#039;core&#039;][&#039;dashboard_recent_comments&#039;]);
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;normal&#039;][&#039;core&#039;][&#039;dashboard_incoming_links&#039;]);
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;normal&#039;][&#039;core&#039;][&#039;dashboard_right_now&#039;]); 
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;side&#039;][&#039;core&#039;][&#039;dashboard_primary&#039;]);
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;side&#039;][&#039;core&#039;][&#039;dashboard_secondary&#039;]);
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;side&#039;][&#039;core&#039;][&#039;dashboard_quick_press&#039;]);
  unset($wp_meta_boxes[&#039;dashboard&#039;][&#039;side&#039;][&#039;core&#039;][&#039;dashboard_recent_drafts&#039;]);
}
add_action(&#039;wp_dashboard_setup&#039;, &#039;remove_dashboard_widgets&#039; );</pre>
<p>The post <a href="http://www.digital-workshop.at/dashboard-widgets-entfernen/">Dashboard Widgets entfernen</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/dashboard-widgets-entfernen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tilt Shift Foto mit CS6</title>
		<link>http://www.digital-workshop.at/tilt-shift-foto-mit-cs6/</link>
		<comments>http://www.digital-workshop.at/tilt-shift-foto-mit-cs6/#comments</comments>
		<pubDate>Mon, 22 Oct 2012 22:21:48 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=2368</guid>
		<description><![CDATA[<p>Einige kennen von euch ja bereits mein Tilt Shift Tutorial von früher. Mittlerweile gibt es aber eine eigene &#8220;Tilt Shift&#8221; funktion in Photoshop CS6 mit der man diesen Effekt ganz</p><p>The post <a href="http://www.digital-workshop.at/tilt-shift-foto-mit-cs6/">Tilt Shift Foto mit CS6</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Einige kennen von euch ja bereits mein <a href="http://www.digital-workshop.at/fake-tilt-shift-bilder/">Tilt Shift Tutorial</a> von früher.</p>
<p>Mittlerweile gibt es aber eine eigene &#8220;Tilt Shift&#8221; funktion in Photoshop CS6 mit der man diesen Effekt ganz schnell erstellen kann..</p>
<p><span id="more-2368"></span></p>
<p>Wir nehmen wieder das Foto vom &#8220;alten&#8221; Tutorial:</p>
<p><img class="aligncenter size-full wp-image-2372" title="tilt-shift-tutorial1" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2012/10/tilt-shift-tutorial1.jpg" alt="" width="530" height="429" /></p>
<p>Dann unter: Filter &#8211; Weichzeichnungsfilter &#8211; Tilt-Shift</p>
<p>den Filter aufrufen</p>
<p><img class="aligncenter size-full wp-image-2373" title="tilt-shift-tutorial2" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2012/10/tilt-shift-tutorial2.jpg" alt="" width="530" height="350" /></p>
<p>Hier könnt ihr dann den Effekt ganz einfach mit den Anfassern einstellen:</p>
<p><img class="aligncenter size-full wp-image-2371" title="tilt-shift-tutorial3" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2012/10/tilt-shift-tutorial3.jpg" alt="" width="530" height="308" /></p>
<p>Ich habe die Anfasser so verstellt das der Kreis im unteren drittel ist, die untere durchgehende Linie direkt am unteren Rand und die obere gestrichelte Linie direkt bis zum oberen Rand führt.</p>
<p><img class="aligncenter size-full wp-image-2370" title="tilt-shift-tutorial4" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2012/10/tilt-shift-tutorial4.jpg" alt="" width="530" height="264" /></p>
<p>Jetzt nurnoch wie bei dem alten Tutorial den Kontrast verstärken und die Farben satter machen.</p>
<p>Das erledigen wir mit einer “Gradationskurve” und mit “Farbton/Sättigung”</p>
<p><img class="alignleft" src="http://www.digital-workshop.at/images/stories/fake/fake-tilt-4.jpg" alt="" width="228" height="368" /><img class="alignleft" src="http://www.digital-workshop.at/images/stories/fake/fake-tilt-5.jpg" alt="" width="216" height="366" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Und hier das fertige Ergebnis:</p>
<p>Sieht genau so aus wie bei dem alten Tutorial, geht aber schneller .</p>
<p><img class="alignleft size-full wp-image-2369" title="tilt-shift-tutorial-fertig" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2012/10/tilt-shift-tutorial-fertig.jpg" alt="" width="530" height="429" /></p>
<p>The post <a href="http://www.digital-workshop.at/tilt-shift-foto-mit-cs6/">Tilt Shift Foto mit CS6</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/tilt-shift-foto-mit-cs6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linktipp: Die wichtigsten non-destruktiven Photoshop-Techniken + Tipps, Tricks &amp; Videos</title>
		<link>http://www.digital-workshop.at/linktipp-die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/</link>
		<comments>http://www.digital-workshop.at/linktipp-die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/#comments</comments>
		<pubDate>Wed, 22 Aug 2012 09:28:00 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Webfundstücke]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=2354</guid>
		<description><![CDATA[<p>http://blog.kulturbanause.de/2012/08/die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/</p><p>The post <a href="http://www.digital-workshop.at/linktipp-die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/">Linktipp: Die wichtigsten non-destruktiven Photoshop-Techniken + Tipps, Tricks &#038; Videos</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://blog.kulturbanause.de/2012/08/die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/" target="_blank">http://blog.kulturbanause.de/2012/08/die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/</a></p>
<p>The post <a href="http://www.digital-workshop.at/linktipp-die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/">Linktipp: Die wichtigsten non-destruktiven Photoshop-Techniken + Tipps, Tricks &#038; Videos</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/linktipp-die-wichtigsten-non-destruktiven-photoshop-techniken-tipps-tricks-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grids erstellen in Photoshop leicht gemacht</title>
		<link>http://www.digital-workshop.at/grids-erstellen-in-photoshop-leicht-gemacht/</link>
		<comments>http://www.digital-workshop.at/grids-erstellen-in-photoshop-leicht-gemacht/#comments</comments>
		<pubDate>Wed, 08 Aug 2012 13:39:32 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[grids]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=2348</guid>
		<description><![CDATA[<p>Grids in Photoshop erstellen ist meistens sehr mühsam, speziell wenn man mit 960er Layout usw arbeitet. Dafür gibt es jetzt ein kleines aber feines Plugin namens &#8220;guideguide&#8221;. Nimmt einem Grafiker</p><p>The post <a href="http://www.digital-workshop.at/grids-erstellen-in-photoshop-leicht-gemacht/">Grids erstellen in Photoshop leicht gemacht</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Grids in Photoshop erstellen ist meistens sehr mühsam, speziell wenn man mit 960er Layout usw arbeitet.</p>
<p>Dafür gibt es jetzt ein kleines aber feines Plugin namens <a href="http://www.guideguide.me/">&#8220;guideguide&#8221;</a>.</p>
<p>Nimmt einem Grafiker eine menge Arbeit ab.</p>
<p>Wie man dieses Plugin installiert könnt ihr auch auf der Homepage nachlesen: <a href="http://www.guideguide.me/">http://www.guideguide.me/</a></p>
<p><img class="size-full wp-image-2349 alignleft" title="demo" src="http://www.digital-workshop.at/digitalwordpress/wp-content/uploads/2012/08/demo.gif" alt="" width="549" height="311" /></p>
<p>The post <a href="http://www.digital-workshop.at/grids-erstellen-in-photoshop-leicht-gemacht/">Grids erstellen in Photoshop leicht gemacht</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/grids-erstellen-in-photoshop-leicht-gemacht/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shame on you Sparrow!</title>
		<link>http://www.digital-workshop.at/shame-on-you-sparrow/</link>
		<comments>http://www.digital-workshop.at/shame-on-you-sparrow/#comments</comments>
		<pubDate>Mon, 06 Aug 2012 09:08:56 +0000</pubDate>
		<dc:creator>wario</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.digital-workshop.at/?p=2344</guid>
		<description><![CDATA[<p>Toll, endlich einen guten Email Client gefunden für meinen Mac und dann sowas: [quote]We&#8217;re excited to announce that Sparrow has been acquired by Google![/quote] Ist ja ansich nichts schleches, aber:</p><p>The post <a href="http://www.digital-workshop.at/shame-on-you-sparrow/">Shame on you Sparrow!</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright" title="sparrow sellout" alt="" src="http://sprw.me/img/sg-tHeCJJvU7sgn.png" width="221" height="237" />Toll, endlich einen guten Email Client gefunden für meinen Mac und dann sowas:</p>
<p>[quote]We&#8217;re excited to announce that Sparrow has been acquired by Google![/quote]<br />
Ist ja ansich nichts schleches, aber:</p>
<p>[quote]Neue Funktionen werden nicht mehr entwickelt[/quote]</p>
<p>Toll, Sellout!</p>
<p>Ich will mein Geld zurück</p>
<p>&nbsp;</p>
<p>The post <a href="http://www.digital-workshop.at/shame-on-you-sparrow/">Shame on you Sparrow!</a> appeared first on <a href="http://www.digital-workshop.at">digital-workshop</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.digital-workshop.at/shame-on-you-sparrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
