<?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>Yorgo Nestoridis &#187; Yorgo Nestoridis</title>
	<atom:link href="http://yorgonestoridis.com/q/author/yorgo-nestoridis/feed/" rel="self" type="application/rss+xml" />
	<link>http://yorgonestoridis.com/q</link>
	<description>U Q Me</description>
	<lastBuildDate>Fri, 10 Feb 2012 19:01:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress Date Styling</title>
		<link>http://yorgonestoridis.com/q/yorgo/wordpress-date-styling/</link>
		<comments>http://yorgonestoridis.com/q/yorgo/wordpress-date-styling/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 19:01:13 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Monet]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Work from home News]]></category>
		<category><![CDATA[Working from Home News]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://typography.ycademy.net/?p=78</guid>
		<description><![CDATA[CSS3 for WP Date Styling Meta Data often are neglected by website developers, however they can be useful and deserve in special cases particular attention and bold design. Today we are just looking at the date on our WP website. Create an eye-catching Date Display The goal is to create a date display on the XO Theme by Semiomantics as seen on the following screenshot: The above design will show only on single post pages;therefore we switch off the date display on posts in the XO Options panel. Archives and the Blog-Home page will remain with default settings until we change those as well. Edit your Loop To start we add just a few lines of code to the XO Loop. Copy loop.php from your XO theme folder into the child theme. Insert the following 5lines of code on line 89, just before the line starting &#60;h1&#62;&#60;?php the... &#160; &#60;div class="date2"&#62; &#60;span class="month"&#62;&#60;?php the_time('M') ?&#62;&#60;/span&#62; &#60;span class="day"&#62;&#60;?php the_time('d') ?&#62;&#60;/span&#62; &#60;span class="year"&#62;&#60;?php the_time('Y') ?&#62;&#60;/span&#62; &#60;/div&#62; Done. Style your WP Date with CSS3 In order not to conflict with the default date settings we have introduced in the above code the class &#8220;date2&#8243; which allows us to distinguish the date settings on [...]]]></description>
			<content:encoded><![CDATA[<h2>CSS3 for WP Date Styling</h2>
<p>Meta Data often are neglected by website developers, however they can be useful and deserve in special cases particular attention and bold design.</p>
<p>Today we are just looking at the date on our WP website.</p>
<h3>Create an eye-catching Date Display</h3>
<p>The goal is to create a date display on the XO Theme by Semiomantics as seen on the following screenshot:</p>
<div id="attachment_79" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/wp-date-style.png"><img class="size-full wp-image-79" title="WP Date CSS3 Style" src="http://typography.ycademy.net/wp-content/uploads/2012/02/wp-date-style.png" alt="WP Date CSS3 Style" width="758" height="374" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<p>The above design will show only on single post pages;therefore we switch off the date display on posts in the XO Options panel. Archives and the Blog-Home page will remain with default settings until we change those as well.</p>
<h3>Edit your Loop</h3>
<p>To start we add just a few lines of code to the XO Loop.</p>
<blockquote><p>Copy loop.php from your XO theme folder into the child theme.</p>
<p>Insert the following 5lines of code on line 89, just before the line starting <code>&lt;h1&gt;&lt;?php the...</code></p>
</blockquote>
<p>&nbsp;</p>
<pre class="brush:css">&lt;div class="date2"&gt;
   &lt;span class="month"&gt;&lt;?php the_time('M') ?&gt;&lt;/span&gt;
   &lt;span class="day"&gt;&lt;?php the_time('d') ?&gt;&lt;/span&gt;
   &lt;span class="year"&gt;&lt;?php the_time('Y') ?&gt;&lt;/span&gt;
&lt;/div&gt;</pre>
<p>Done.</p>
<h3>Style your WP Date with CSS3</h3>
<p>In order not to conflict with the default date settings we have introduced in the above code the class &#8220;date2&#8243; which allows us to distinguish the date settings on single posts from date styling on the home page and on archives.</p>
<p>Also we have introduced span classes for the different date parameters in order to gain control over each of them individually (day,month,year). I use d M Y in my WP General Settings (custom).</p>
<ul>
<li>d    stands for Numeric with leading Zeros (day)</li>
<li>M  stands for Textual 3 letters (month)</li>
<li>Y   stands for Numeric 4 digits (year)</li>
</ul>
<p>Reference: <a title="Formatting Date and Time in WordPress" href="http://codex.wordpress.org/Formatting_Date_and_Time" >WordPress formatting Date and Time</a>.</p>
<p>Add the following to the style.css of your child theme:</p>
<pre class="brush:css">.post .date2, .hentry .date2 {
    background: none repeat scroll 0 0 #444444;
    display: block;
    font-family: Arial,sans-serif;
    height: 110px;
    left: 54%;
    position: absolute;
    width: 110px;
    margin-top:10px;
    color:#FFFFFF;
}</pre>
<p>This bit will take care of some basics according to the style-sheet of XO.</p>
<p>Then we will just style each span class as per above code and add the following to our style-sheet:</p>
<pre class="brush:css">.day{font-size:85px !important;display:block;position:absolute;left:7px;top:26px;}
.month{font-size:40px !important;display:block;position:absolute;top:78px;left:12px}
.year{font-size:16px !important;-moz-transform: rotate(-90deg);-webkit-transform: rotate(-90deg);-ms-transform: rotate(-90deg);position:absolute;left:72px;top:75px}</pre>
<p>&nbsp;</p>
<p>This will take care of display <img src='http://typography.ycademy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>Note the text rotation on the year span!</p>
<p>Depending on your other styles and fonts you may have to adjust detail positioning.</p>
<p>Have fun experimenting with your date styles on XO!</p>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo/wordpress-date-styling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress CSS3 Menu Tutorial</title>
		<link>http://yorgonestoridis.com/q/yorgo/wordpress-css3-menu-tutorial/</link>
		<comments>http://yorgonestoridis.com/q/yorgo/wordpress-css3-menu-tutorial/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 10:36:58 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Monet]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Work from home News]]></category>
		<category><![CDATA[Working from Home News]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://typography.ycademy.net/?p=9</guid>
		<description><![CDATA[Menu Styling with Typography CSS3 By default the Semiomantics XO Theme displays the following Main Navigation displaying category names: &#160; In order to style the menu and namely the typography, it is advisable to start by creating the tabs using the WordPress Custom Menu feature from the Dashboard under Appearance. My plan is to create a minimalist typography focused WordPress theme. Create your Menu For the purpose of this demo we will create the following menu tabs: Home (We will create a custom Home Frontpage) Contact Typography Blog News (will contain a news feed from my author blog) Get XO (Link to Semiomantics)  Add some style to the background and tabs For the purpose of this demo I will create a menu with a gradient background and a border with rounded corners and a discrete hover effect using the custom style sheet from the child theme. The XO Theme has a background set on the main-navigation div -we get rid of it as we will stretch the tabs over 100% f the width. .main-navigation { background:none !important; } Now we will apply some linear gradient in the light gray shades with an angle of 270 degrees: .main-navigation .sf-menu a, .main-navigation [...]]]></description>
			<content:encoded><![CDATA[<h2>Menu Styling with Typography CSS3</h2>
<p>By default the Semiomantics XO Theme displays the following Main Navigation displaying category names:</p>
<div id="attachment_12" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/menu1.png"><img class="size-large wp-image-12" title="WP Menu Styling with Typography" src="http://typography.ycademy.net/wp-content/uploads/2012/02/menu1-1024x537.png" alt="XO Theme default Menu" width="644" height="337" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<p>&nbsp;</p>
<p>In order to style the menu and namely the typography, it is advisable to start by creating the tabs using the WordPress Custom Menu feature from the Dashboard under Appearance.</p>
<p><strong>My plan is to create a minimalist typography focused WordPress theme.</strong></p>
<h3>Create your Menu</h3>
<p>For the purpose of this demo we will create the following menu tabs:</p>
<ul>
<li>Home (We will create a custom Home Frontpage)</li>
<li>Contact</li>
<li>Typography</li>
<li>Blog</li>
<li>News (will contain a news feed from my author blog)</li>
<li>Get XO (Link to Semiomantics)</li>
</ul>
<h3> Add some style to the background and tabs</h3>
<p>For the purpose of this demo I will create a menu with a gradient background and a border with rounded corners and a discrete hover effect using the custom style sheet from the child theme.</p>
<p>The XO Theme has a background set on the main-navigation div -we get rid of it as we will stretch the tabs over 100% f the width.</p>
<pre class="brush:css">.main-navigation {
   background:none !important;
   }</pre>
<p>Now we will apply some linear gradient in the light gray shades with an angle of 270 degrees:</p>
<pre class="brush:css">.main-navigation .sf-menu a, .main-navigation .sf-menu a:visited {
   background:-moz-linear-gradient(270deg, #FCFCFC, #ECECEC) repeat scroll 0 0 transparent;
   }</pre>
<p>Now, we will add a border to the tabs which is in style with our gradient to end with:</p>
<pre class="brush:css">.main-navigation .sf-menu a, .main-navigation .sf-menu a:visited {
   background:-moz-linear-gradient(270deg, #FCFCFC, #ECECEC);
   border-color: #EAEAEA #F5F5F5 #F5F5F5;
   border-radius: 3px 3px 3px 3px;
   border-style: solid;
   border-width: 1px;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
   position: relative;
   }</pre>
<p>Note the box shadow with an  offset down of 1px and a glow of 1px and the transparency achieved with the rgba color-code, whereas the 0.2 stands for the opacity (alpha channel).</p>
<p>We want to make this style compatible with the most popular browsers and style the hover effect at the same time:</p>
<pre class="brush:css">.main-navigation .sf-menu a, .main-navigation .sf-menu a:visited {
   	background: -moz-linear-gradient(270deg, #FCFCFC, #ECECEC) repeat scroll 0 0 transparent;
 	  background: -webkit-linear-gradient(270deg, #FCFCFC, #ECECEC) repeat scroll 0 0 transparent;
	  -pie-background: linear-gradient(#FCFCFC, #ECECEC);
    border-color: #EAEAEA #F5F5F5 #F5F5F5 #F5F5F5;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
     border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -pie-box-shadow: 0 1px 1px #ccc;
    position: relative;
    text-transform:uppercase;
    behavior: url("http://typography.ycademy.net/wp-content/themes/typography/PIE.php");
   }

.main-navigation .sf-menu li.sfHover,
.main-navigation .sf-menu li li,
.main-navigation .sf-menu li li li,
.main-navigation .sf-menu a:focus,
.main-navigation .sf-menu a:hover{
     background: -moz-linear-gradient(270deg, #FFFFFF, #222222) repeat scroll 0 0 transparent !important;
     background: -webkit-linear-gradient(270deg, #FFFFFF, #222222) repeat scroll 0 0 transparent !important;
     -pie-background: linear-gradient(#FFFFFF, #222222);
     color:#FFFFFF !important;
     behavior: url("http://typography.ycademy.net/wp-content/themes/typography/PIE.php");
  }</pre>
<p>&nbsp;</p>
<p>Note: we are using PIE to assure display in IE; the PIE scripts(htc version) have been added to the child theme.</p>
<p>At this stage we have finished styling the menu bar which displays now as follows:</p>
<div id="attachment_28" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/menu2.png"><img class="size-large wp-image-28" title="XO Menu styled with CSS3" src="http://typography.ycademy.net/wp-content/uploads/2012/02/menu2-1024x537.png" alt="XO Menu styled with CSS3" width="644" height="337" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<h3>Font Styling with CSS3</h3>
<p>Let&#8217;s take care of our fonts now and stretch the menu bar over 100% of the width. Instead of stretching the boxes we will introduce letter spacing.</p>
<p>First we force upper cases and decide about the typefaces (serif or non-serif fonts). Fonts and font size are chosen from the XO options panel:</p>
<div id="attachment_30" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/xo-options1.png"><img class="size-full wp-image-30" title="XO Menu Options" src="http://typography.ycademy.net/wp-content/uploads/2012/02/xo-options1.png" alt="XO Menu Options" width="608" height="466" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<p>Then we introduce letter spacing:</p>
<pre class="brush:css">.main-navigation {
   text-transform:uppercase;
   letter-spacing:12.4px;
    }</pre>
<p>We get the following:</p>
<div id="attachment_31" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/menu3.png"><img class="size-large wp-image-31" title="Letter spacing CSS3" src="http://typography.ycademy.net/wp-content/uploads/2012/02/menu3-1024x537.png" alt="Letter spacing CSS3" width="644" height="337" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<p>We can play now with different fonts and sizes to style the menu to taste.</p>
<p>Here an example with ChunkFive 18px and line spacing of 9.6px:</p>
<div id="attachment_32" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/menu4.png"><img class="size-large wp-image-32" title="XO Menu" src="http://typography.ycademy.net/wp-content/uploads/2012/02/menu4-1024x537.png" alt="XO Menu" width="644" height="337" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<p>How about using one of my preferred fonts, Yorgo 28 px with letter spacing of 9.4px?</p>
<div id="attachment_34" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/menu5.png"><img class="size-large wp-image-34" title="Yorgo Font" src="http://typography.ycademy.net/wp-content/uploads/2012/02/menu5-1024x537.png" alt="Yorgo Font" width="644" height="337" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<p>Looks pretty sweet in IE 10 as well <img src='http://typography.ycademy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  :</p>
<div id="attachment_36" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/menu6.png"><img class="size-full wp-image-36" title="CSS3 Styles in IE 10" src="http://typography.ycademy.net/wp-content/uploads/2012/02/menu6.png" alt="CSS3 Styles in IE 10" width="688" height="354" /></a>
<p class="wp-caption-text">CSS3 Styles in IE 10</p>
</div>
<p>By the way: this menu is visible on the iPhone without zooming &#8230;</p>
<div id="attachment_38" class="wp-caption alignnone" ><a href="http://typography.ycademy.net/wp-content/uploads/2012/02/IMG_3411.png"><img class="size-full wp-image-38" title="CSS3 on the iPhone" src="http://typography.ycademy.net/wp-content/uploads/2012/02/IMG_3411.png" alt="CSS3 on the iPhone" width="960" height="640" /></a>
<p class="wp-caption-text">Click to view</p>
</div>
<p>In order to get off the monochromatic minimalism, just add color to fonts, backgrounds and borders and you can design a nice rain-bow menu and theme <img src='http://typography.ycademy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo/wordpress-css3-menu-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Typography on Semiomantics XO Theme for WordPress</title>
		<link>http://yorgonestoridis.com/q/yorgo/custom-typography-on-semiomantics-xo-theme-for-wordpress/</link>
		<comments>http://yorgonestoridis.com/q/yorgo/custom-typography-on-semiomantics-xo-theme-for-wordpress/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:58:21 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Monet]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Work from home News]]></category>
		<category><![CDATA[Working from Home News]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://typography.ycademy.net/?p=5</guid>
		<description><![CDATA[Customize your Fonts and Styles with CSS3
This website is a demo about how we can customize our WordPress powered website using &#8230; just typography and font styling.
Since many CSS3 properties  can be rendered with most common browsers, a special ...]]></description>
			<content:encoded><![CDATA[<h2>Customize your Fonts and Styles with CSS3</h2>
<p>This website is a demo about how we can customize our WordPress powered website using &#8230; just typography and font styling.</p>
<p>Since many CSS3 properties  can be rendered with most common browsers, a special focus on typography is worth while.</p>
<p><img class="alignnone size-medium wp-image-6" title="Typography on WordPress" src="http://typography.ycademy.net/wp-content/uploads/2012/02/typography-slide-300x139.png" alt="Typography on WordPress" width="300" height="139" /></p>
<p>This website will serve as a demo for our YorgoLive Calls focusing on customizing fonts and typography on Semiomantics XO.</p>
<p>More information will also be available at my <a title="Yorgo Nestoridis Blog" href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" >main blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo/custom-typography-on-semiomantics-xo-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Customize your WordPress Typography</title>
		<link>http://yorgonestoridis.com/q/yorgo-nestoridis/how-to-customize-your-wordpress-typography/</link>
		<comments>http://yorgonestoridis.com/q/yorgo-nestoridis/how-to-customize-your-wordpress-typography/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:32:49 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22575</guid>
		<description><![CDATA[Basic CSS3 to Customize your WordPress Theme With the increasing browser compatibility of CSS3, additional customization of websites is in the reach of most anyone (Even a Monkey can do it, according to Nikos Advertizopoulos &#8230;). Tonight we will start with a series of calls to become familiar with the possibilities arising from the use of CSS3 on WordPress to improve typography and font styles. You may follow the progress of the work at the Ycademy Demo Site which features the Semiomantics XO Theme. Looking forward to seeing you on YorgoLive tonight. Related posts: How to Customize WordPress 2 How to Customize WordPress Semiomantics XO Transparent WordPress Drafts Customize WordPress with Semiomantics XO XO Photo Press WordPress Theme
Related posts:<ol>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/" rel="bookmark" title="How to Customize WordPress 2">How to Customize WordPress 2</a></li>
<li><a href="http://yorgonestoridis.com/web-design/how-to-customize-wordpress/" rel="bookmark" title="How to Customize WordPress">How to Customize WordPress</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" rel="bookmark" title="Semiomantics XO Transparent WordPress Drafts">Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/customize-wordpress-with-semiomantics-xo/" rel="bookmark" title="Customize WordPress with Semiomantics XO">Customize WordPress with Semiomantics XO</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" rel="bookmark" title="XO Photo Press WordPress Theme">XO Photo Press WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="Basic_CSS3_to_Customize_your_WordPress_Theme"><br />
<h2>Basic CSS3 to Customize your WordPress Theme</h2>
<p></span></p>
<p>With the increasing browser compatibility of CSS3, additional customization of websites is in the reach of most anyone (Even a Monkey can do it, according to Nikos Advertizopoulos &#8230;). Tonight we will start with a series of calls to become familiar with the possibilities arising from the use of CSS3 on WordPress to improve typography and font styles.</p>
<p>You may follow the progress of the work at the<a title="Custom Typography on wordPress" href="http://typography.ycademy.net" > Ycademy Demo Site</a> which features the Semiomantics XO Theme.</p>
<p><img class="alignnone size-large wp-image-22576" title="Typography on WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/typography-slide-460x213.png" alt="Typography on WordPress" width="460" height="213" /></p>
<p>Looking forward to seeing you on<a title="Daily Online Trainings Ycademy" href="http://yorgolive.com" > YorgoLive</a> tonight.</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/' rel='bookmark' title='How to Customize WordPress 2'>How to Customize WordPress 2</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-customize-wordpress/' rel='bookmark' title='How to Customize WordPress'>How to Customize WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/customize-wordpress-with-semiomantics-xo/' rel='bookmark' title='Customize WordPress with Semiomantics XO'>Customize WordPress with Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo-nestoridis/how-to-customize-your-wordpress-typography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semiomantics XO Transparent WordPress Drafts</title>
		<link>http://yorgonestoridis.com/q/yorgo/semiomantics-xo-transparent-wordpress-drafts/</link>
		<comments>http://yorgonestoridis.com/q/yorgo/semiomantics-xo-transparent-wordpress-drafts/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 11:19:44 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Media Marketing Social Media]]></category>
		<category><![CDATA[Social MediaMarketing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22562</guid>
		<description><![CDATA[Transparent WordPress Custom Theme Playing with the XO Theme Version 3.3.x from Semiomantics and CSS3, I notice how easy it is for most anyone to customize the XO Theme by adding transparencies and other CSS3 elements. Here below you find some drafts. You may visit the test site from : http://globalthebrand.com. Transparent WordPress Gallery Scripts and Plug-ins On the test site we use the Semiomantics Widgets and Theme Handler plug-in as well as a modified Supersized plug-in; the latter needs some more work to make it more responsive. Also we use TubePress which behaves fine also on mobile. The Theme is Semiomantics XO with 3 custom child-themes; any theme can be associated with any page, post, category, tag or sidebar. &#160; &#160; &#160; Related posts: Transparent WordPress Semiomantics XO Transparent WordPress Theme Design Semiomantics XO Blog The 1001 Faces of Semiomantics XO Semiomantics XO 2011 for WordPress
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-semiomantics-xo/' rel='bookmark' title='Transparent WordPress Semiomantics XO'>Transparent WordPress Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/' rel='bookmark' title='Semiomantics XO Blog'>Semiomantics XO Blog</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress/' rel='bookmark' title='Semiomantics XO 2011 for WordPress'>Semiomantics XO 2011 for WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="Transparent_WordPress_Custom_Theme"><br />
<h2>Transparent WordPress Custom Theme</h2>
<p></span></p>
<p>Playing with the XO Theme Version 3.3.x from Semiomantics and CSS3, I notice how easy it is for most anyone to customize the XO Theme by adding transparencies and other CSS3 elements. Here below you find some drafts. You may visit the test site from : <a title="Global The Brand Demo Transparent WordPress Theme" href="http://globalthebrand.com" >http://globalthebrand.com</a>.</p>
<p><span id="Transparent_WordPress_Gallery"><br />
<h3>Transparent WordPress Gallery</h3>
<p></span></p>
<p><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-1/' title='XO Theme Archive'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-1-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Archive" title="XO Theme Archive" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-8/' title='XO Theme Blog Home 3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-8-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home 3" title="XO Theme Blog Home 3" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-4/' title='XO Theme Blog Home Layout'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-4-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home Layout" title="XO Theme Blog Home Layout" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-5/' title='XO Theme Blog Home Layout 2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-5-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home Layout 2" title="XO Theme Blog Home Layout 2" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-6/' title='XO Theme Front Page'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-6-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Front Page" title="XO Theme Front Page" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-7/' title='XO Theme Front Page 2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-7-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Front Page 2" title="XO Theme Front Page 2" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-3/' title='XO Theme Fullscreen Slider'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-3-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Fullscreen Slider" title="XO Theme Fullscreen Slider" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens9/' title='XO Theme Presentation Slider'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens9-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Presentation Slider" title="XO Theme Presentation Slider" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-2/' title='XO Theme Video Gallery'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-2-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Video Gallery" title="XO Theme Video Gallery" /></a></p>
<p><span id="Scripts_and_Plug-ins"><br />
<h3>Scripts and Plug-ins</h3>
<p></span></p>
<p>On the test site we use the Semiomantics Widgets and Theme Handler plug-in as well as a modified Supersized plug-in; the latter needs some more work to make it more responsive. Also we use TubePress which behaves fine also on mobile.</p>
<p>The Theme is <a title="Semiomantics XO - by Semiomantics" href="http://semiomantics.com" >Semiomantics XO</a> with 3 custom child-themes; any theme can be associated with any page, post, category, tag or sidebar.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-semiomantics-xo/' rel='bookmark' title='Transparent WordPress Semiomantics XO'>Transparent WordPress Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/' rel='bookmark' title='Semiomantics XO Blog'>Semiomantics XO Blog</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress/' rel='bookmark' title='Semiomantics XO 2011 for WordPress'>Semiomantics XO 2011 for WordPress</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo/semiomantics-xo-transparent-wordpress-drafts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 1001 Faces of Semiomantics XO</title>
		<link>http://yorgonestoridis.com/q/yorgo-nestoridis/the-1001-faces-of-semiomantics-xo/</link>
		<comments>http://yorgonestoridis.com/q/yorgo-nestoridis/the-1001-faces-of-semiomantics-xo/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 11:31:43 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22536</guid>
		<description><![CDATA[XO for WordPress is a responsive, flexible and highly customizable Theme for high performance and excellence in publishing. Developed by Semiomantics since 2007, the XO is mainly used for custom High End sites. A DIY version is available since 2011 at http://semiomantics.com. News are published to Facebook at http://facebook.com/semiomantics.
Related posts:<ol>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-thesis/" rel="bookmark" title="Semiomantics Thesis Interpretation">Semiomantics Thesis Interpretation</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/wordpress-shop-version-3-by-semiomantics/" rel="bookmark" title="WordPress Shop Version 3 by Semiomantics">WordPress Shop Version 3 by Semiomantics</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/" rel="bookmark" title="Semiomantics XO Blog">Semiomantics XO Blog</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2010-edition/" rel="bookmark" title="Semiomantics XO 2010 Edition">Semiomantics XO 2010 Edition</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/" rel="bookmark" title="Ycademy Online Seminar January 2012">Ycademy Online Seminar January 2012</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="New_Semiomantics_XO_Theme_for_WordPress"><br />
<h2>New Semiomantics XO Theme for WordPress</h2>
<p></span></p>
<p><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens1/' title='xo12screens1'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens1-200x150.jpg" class="attachment-thumbnail" alt="xo12screens1" title="xo12screens1" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens10/' title='xo12screens10'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens10-200x150.jpg" class="attachment-thumbnail" alt="xo12screens10" title="xo12screens10" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens2/' title='xo12screens2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens2-200x150.jpg" class="attachment-thumbnail" alt="xo12screens2" title="xo12screens2" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens3/' title='xo12screens3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens3-200x150.jpg" class="attachment-thumbnail" alt="xo12screens3" title="xo12screens3" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens4/' title='xo12screens4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens4-200x150.jpg" class="attachment-thumbnail" alt="xo12screens4" title="xo12screens4" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens5/' title='xo12screens5'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens5-200x150.jpg" class="attachment-thumbnail" alt="xo12screens5" title="xo12screens5" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens6/' title='xo12screens6'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens6-200x150.jpg" class="attachment-thumbnail" alt="xo12screens6" title="xo12screens6" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens7/' title='xo12screens7'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens7-200x150.jpg" class="attachment-thumbnail" alt="xo12screens7" title="xo12screens7" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens9/' title='xo12screens9'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens9-200x150.jpg" class="attachment-thumbnail" alt="xo12screens9" title="xo12screens9" /></a></p>
<p>The above Screenshots represent just some of the pages, features and looks the 2012 Edition of the high performance XO Theme for WordPress has up its sleeves. The above site is the fruit of the 2 Days Ycademy Online Seminar for Semiomantics Developers and designers.</p>
<p><span id="XO_Theme_Features"><br />
<h3>XO Theme Features</h3>
<p></span></p>
<p>The 2012 Edition of XO is focused on even more flexibility in as much as editing, cross-browser and cross-platform compatibility are concerned.</p>
<p>The Site displays perfectly on Mobile devices, showing responsiveness also of the plugged in scripts chosen of which some have been adapted to satisfy the high standards of Semiomantics Publishing Scripts for Excellence.</p>
<p>The site elaborated at the Ycademy Online Seminar this past week-end features some smashing features, such as:</p>
<ul>
<li>Background Slideshow, customizable for each page, post or archive</li>
<li>Built in Directory</li>
<li>Media Library for YouTube and Vimeo</li>
<li>Pro-sliders which can be deployed anywhere on the site</li>
<li>In addition to the responsive design, a separate light Mobile Version is available</li>
<li>Bold and Efficient Navigation</li>
<li>Built in Custom Fonts</li>
<li>Social Network connectivity and publishing</li>
<li>and much more.</li>
</ul>
<p><span id="XO_for_Developers"><br />
<h3>XO for Developers</h3>
<p></span></p>
<p>The XO script is well commented and offers designers a clean and straight forward environment for custom developments. XO uses best practices for WordPress development and makes the best use of the possibilities offered by the WP back-bone, assuring smooth integration and optimized conflict handling.</p>
<p><span id="XO_for_Designers"><br />
<h3>XO for Designers</h3>
<p></span></p>
<p>XO is a great playground for designers. The DIY version allows anyone to adapt layout and colors to taste right from the back-office; there is no need to have any knowledge about coding or designing. The theme behaves like a Chameleon and adapts to specific needs with just a few clicks of the mouse: pre-configured layout elements transform your XO quickly into a Magazine, Newspaper, personal Author Blog, a Media Hub, a Shop, a Marketing Machine, a Social Media Publisher, a Product Promoter or a Fan Site or most anything your imagination dictates.</p>
<p>For the professional designer, XO offers a well commented environment. Custom code can be added right from the dashboard or, as I prefer using a child theme. XO is tuned for HTML5 and CSS3 use, making it a modern and inspiring framework for exceptional design effects.</p>
<p><span id="XO_out_of_the_Box"><br />
<h3>XO out of the Box</h3>
<p></span></p>
<p>Out of the box, the XO Theme for WordPress provides a stable and reliable, robust and optimized solution for common use. It provides built in features such a slider with multiple transitions and a one click selector for easy use.</p>
<p>Layouts can be easily adapted to needs and purpose of the site. In fact, most custom designers rely on the theme engine to format efficiently layouts.</p>
<p><span id="Custom_XO"><br />
<h3>Custom XO</h3>
<p></span></p>
<p>The site featured in the above gallery uses a few pro plug-ins to add functionality in function of customer requirements. The integration of such add on scripts is a relatively simple process for designers and developers.</p>
<p><span id="Customization_of_the_XO_Theme"><br />
<h3>Customization of the XO Theme</h3>
<p></span></p>
<p>XO has been developed for high performance, productivity, excellence in publishing and flexibility. For the professional users, the XO Theme constitues a solid base with a huge potential for customization and creative artistic expression.</p>
<p><span id="Semiomantics_XO_2012_Release"><br />
<h3>Semiomantics XO 2012 Release</h3>
<p></span></p>
<p>The release of XO Version 3.3.x is planned for the first week of February. The present Release Candidate has been thoroughly tested. A few minor issues will be taken care off before XO will be available to the public.</p>
<p><span id="Upgrading_existing_XO_installations"><br />
<h3>Upgrading existing XO installations</h3>
<p></span></p>
<p>If your site is running on Semiomantics XO suing basic customization, the theme can just be overwritten. (Save your custom CSS beforehand.)</p>
<p>If you are using a custom version with custom developments or a child theme, some of your customization will need to be adapted to the enhancements of XO 2012. This concerns namely custom headers and footers as well as custom functions.</p>
<p>Support for developers and designers is available as usual at our Ycademy Online Calls and Seminars or through Semiomantics Pro Support.</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-thesis/' rel='bookmark' title='Semiomantics Thesis Interpretation'>Semiomantics Thesis Interpretation</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/wordpress-shop-version-3-by-semiomantics/' rel='bookmark' title='WordPress Shop Version 3 by Semiomantics'>WordPress Shop Version 3 by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/' rel='bookmark' title='Semiomantics XO Blog'>Semiomantics XO Blog</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2010-edition/' rel='bookmark' title='Semiomantics XO 2010 Edition'>Semiomantics XO 2010 Edition</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo-nestoridis/the-1001-faces-of-semiomantics-xo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make WordPress Themes Responsive</title>
		<link>http://yorgonestoridis.com/q/yorgo/how-to-make-wordpress-themes-responsive/</link>
		<comments>http://yorgonestoridis.com/q/yorgo/how-to-make-wordpress-themes-responsive/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 09:29:35 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Media Marketing Social Media]]></category>
		<category><![CDATA[Social MediaMarketing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22524</guid>
		<description><![CDATA[Responsive Themes for WordPress Responsive Websites become a must in 2012. This tutorial demonstrates how to make your WordPress Theme Responsive. What is Responsive Web Design? In very simple terms: Responsive Web Design aims to display content adapted to the visitors screen size. This means namely that the layout width must be fluid, i.e. expressed as a percentage of the width of the screen, typefaces expressed in em and images must be scalable. Practically speaking: a responsive designs can be viewed on a smart-phone or on a large PC screen, the display will always be the same and adapted to the size of the screen or browser window. n stead of using multiple style-sheets for different screen sizes, designers use Media Queries which allow to create multiple layouts using the same content. To achieve scalability, CSS media queries, such as min-width or orientation are used. Make your WordPress Theme responsive using a Child Theme A quick and easy way consists in creating a child theme; this allows you to upgrade your theme as the case may be without altering your customizations. How to create a responsive child theme? 1. Create a new folder in your wp-content/themes folder and name it [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-christmas-themes/' rel='bookmark' title='WordPress Christmas Themes'>WordPress Christmas Themes</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wp-best-business-themes/' rel='bookmark' title='Best WordPress Business Themes'>Best WordPress Business Themes</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/' rel='bookmark' title='How to Style the WordPress Menu'>How to Style the WordPress Menu</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-xo53-theme-for-wordpress/' rel='bookmark' title='New XO53 Theme for WordPress'>New XO53 Theme for WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="Responsive_Themes_for_WordPress"><br />
<h2>Responsive Themes for WordPress</h2>
<p></span></p>
<p>Responsive Websites become a must in 2012. This tutorial demonstrates how to make your WordPress Theme Responsive.</p>
<p><span id="What_is_Responsive_Web_Design"><br />
<h3>What is Responsive Web Design?</h3>
<p></span></p>
<p>In very simple terms: Responsive Web Design aims to display content adapted to the visitors screen size. This means namely that the layout width must be fluid, i.e. expressed as a percentage of the width of the screen, typefaces expressed in <code>em</code> and images must be scalable.</p>
<div id="attachment_22530" class="wp-caption alignnone" ><a href="http://xo2012.ycademy.net" ><img class="size-full wp-image-22530 " title="Responsive WordPress Theme XO by Semiomantics" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile2-4601.jpg" alt="Responsive WordPress Theme XO by Semiomantics" width="460" height="690" /></a>
<p class="wp-caption-text">Responsive WordPress Theme XO by Semiomantics</p>
</div>
<p>Practically speaking: a responsive designs can be viewed on a smart-phone or on a large PC screen, the display will always be the same and adapted to the size of the screen or browser window. n stead of using multiple style-sheets for different screen sizes, designers use Media Queries which allow to create multiple layouts using the same content. To achieve scalability, CSS media queries, such as <code>min-width</code> or <code>orientation</code> are used.</p>
<p><span id="Make_your_WordPress_Theme_responsive_using_a_Child_Theme"><br />
<h3>Make your WordPress Theme responsive using a Child Theme</h3>
<p></span></p>
<p>A quick and easy way consists in creating a child theme; this allows you to upgrade your theme as the case may be without altering your customizations.</p>
<p><span id="How_to_create_a_responsive_child_theme"><br />
<h4>How to create a responsive child theme?</h4>
<p></span></p>
<p>1. Create a new folder in your wp-content/themes folder and name it anything you like; for the purpose of this exercise I call it &#8220;responsive&#8221;</p>
<p>2. Create a style sheet in your new Child Theme folder (call it styles.css).</p>
<p>3. Suppose your main theme is called &#8220;wptheme&#8221;; paste the following into style.css</p>
<p><code></p>
<pre class="brush: php; title: ; notranslate">
 /*
 Theme Name: wptheme Child
 Theme URI: http://www.yourdomain.com/
 Description: Child theme for wptheme
 Author: Your Name
 Author URI: http://www.yourdomain.com
 Template: wptheme
 Version:1.0
 */
</pre>
<p></code><br />
The only line you really need to respect is Template:wptheme; this line refers to the parent theme folder.</p>
<p>4. Import the parent themes style-sheet by adding now the following line to your new style.css:</p>
<p><code>@import url(“../wptheme/style.css”);</code></p>
<p>5. Define the screen sizes you design for. (Smart-phones, tablets, PC) To test the result we just create different h1 color values for the different screen sizes:</p>
<pre class="brush: php; title: ; notranslate">@media screen and (max-width:320px)
{
h1 {
color: #ff0000;
}
}
@media screen and (min-width:321px) and (max-width:768px)
{
h1 {
color:#00FF00;
}
}
@media screen and (min-width:769px)
{
h1 {
color: #0000FF;
}
}</pre>
<p>Having set these basic parameters, you can now apply styles and layout values to taste, such as vertical navigation display on small screens.</p>
<p><span id="How_to_make_Images_responsive"><br />
<h4>How to make Images responsive</h4>
<p></span></p>
<p>To make images responsive we will need to take some WordPress specifics into account and there fore we will intervene with CSS3 and Media Queries and modify styles.css and functions.php of our theme.</p>
<p>Add the following to your style-sheet to make images scalable:</p>
<pre class="brush: php; title: ; notranslate">img{max-width: 100%;}
img{ -ms-interpolation-mode: bicubic; }</pre>
<p>Now the images will be re-sized to fit horizontally, while the vertical scaling is still defined by WordPress. We need to remove WordPress image height and width values to scale our images proportionally.</p>
<p>In WP, image classes come with a with and height properties; we delete these properties like so:</p>
<p>change in your WP editor:</p>
<pre class="brush: php; title: ; notranslate">&lt;img class=”imgclass” src=”../images/imagethumb.jpg” alt=”” width=”100″ height=”100″ /&gt;</pre>
<p>to this:</p>
<pre class="brush: php; title: ; notranslate">&lt; img class=”imgclass” src=”../images/imagethumb.jpg” alt=”” /&gt;</pre>
<p>This will work for your post and page images, however not for the images created by WP dynamically, such as post thumbnails. We need to delete with and height properties dynamically with a function.</p>
<p>Add to functions.php:</p>
<pre class="brush: php; title: ; notranslate">function remove_wp_width_height($string){
return preg_replace(‘/\/i’, ”,$string);
}</pre>
<p>Now you need to make a final modification in your template and replace:</p>
<pre class="brush: php; title: ; notranslate">the_post_thumbnail();</pre>
<p>with the following:</p>
<pre class="brush: php; title: ; notranslate">echo remove_wp_width_height(get_the_post_thumbnail(get_the_ID(),’large’));</pre>
<p>That&#8217;s all!</p>
<p>Hopefully the above will help you to do additional customization wok and as the case may be, to adapt your great themes to the requirements of 2012 Web Design.</p>
<p><span id="Incoming_search_terms:"><br />
<h4>Incoming search terms:</h4>
<p></span>
<ul>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="červený kříž">červený kříž</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="is there a wau to make a wp theme responsive after creation">is there a wau to make a wp theme responsive after creation</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="make wordpress responsive">make wordpress responsive</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="how to make a responsive wordpress theme">how to make a responsive wordpress theme</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="how to create a wordpress theme">how to create a wordpress theme</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="how to make wordpress theme responsive">how to make wordpress theme responsive</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="how to make a wordpress theme responsive">how to make a wordpress theme responsive</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="wordpress responsive theme">wordpress responsive theme</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="make a responsive web design wordpress child theme">make a responsive web design wordpress child theme</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/" title="make theme responsive">make theme responsive</a></li>
</ul>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-christmas-themes/' rel='bookmark' title='WordPress Christmas Themes'>WordPress Christmas Themes</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wp-best-business-themes/' rel='bookmark' title='Best WordPress Business Themes'>Best WordPress Business Themes</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/' rel='bookmark' title='How to Style the WordPress Menu'>How to Style the WordPress Menu</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-xo53-theme-for-wordpress/' rel='bookmark' title='New XO53 Theme for WordPress'>New XO53 Theme for WordPress</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo/how-to-make-wordpress-themes-responsive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ycademy Online Seminar January 2012</title>
		<link>http://yorgonestoridis.com/q/yorgo/ycademy-online-seminar-january-2012/</link>
		<comments>http://yorgonestoridis.com/q/yorgo/ycademy-online-seminar-january-2012/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 10:40:09 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Media Marketing Social Media]]></category>
		<category><![CDATA[Social MediaMarketing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22516</guid>
		<description><![CDATA[Ycademy Online Seminar January 2012 - The XO Theme for WordPress remains the most flexible theme for custom development, accessible to most anyone
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wp-best-shop/' rel='bookmark' title='Ycademy Online Seminar January 2010'>Ycademy Online Seminar January 2010</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar/' rel='bookmark' title='Ycademy Online Seminar'>Ycademy Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-april-2011/' rel='bookmark' title='Ycademy Online Seminar April 2011'>Ycademy Online Seminar April 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="Semiomantics_XO_with_CSS3_and_HTML5"><br />
<h2>Semiomantics XO with CSS3 and HTML5</h2>
<p></span></p>
<p>Time has come to learn about new technologies available for web designers and developers. All common browsers are increasingly able to read and interpret CSS 3 and HTML5 and about all computers are equipped to read java and jQuery. Therefore new possibilities become available to XO developers which we will focus on during the January Seminar.</p>
<p><span id="XO_Theme_for_WordPress"><br />
<h2>XO Theme for WordPress</h2>
<p></span></p>
<p>XO has evolved over the past 4 years along with WordPress Developments. The theme has become responsive and shows perfectly on smart phones and tablets.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/screens2h1-300.jpg"><img class="alignnone size-large wp-image-22518" title="screens2h1-300" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/screens2h1-300-460x213.jpg" alt="XO Theme for WordPress" width="460" height="213" /></a></p>
<p><span id="XO_Edition_2012"><br />
<h2>XO Edition 2012</h2>
<p></span></p>
<p>Subsequent to the release of WordPress 3.3.x XO needed some adjustments and updates which we have implemented and tested. New design functions become available for advanced customization. XO remains the most flexible theme for custom development, accessible to most anyone.</p>
<p><span id="The_XO_Seminar"><br />
<h3>The XO Seminar</h3>
<p></span></p>
<p>The goal of the seminar is to become familiar with XO and it&#8217;s new features as well as to learn how CSS3, HTML5 and jQuery allow to adapt XO to most any customer&#8217;s needs.</p>
<p>Some of the technical issues we will have a detailed look at are:</p>
<ul>
<li>Transparencies with CSS3</li>
<li>Background Sliders</li>
<li>Mobile Verions using WPTouch Pro</li>
<li>Content and Frame sliders with Pro Slider and SlideDeck Pro</li>
<li>Social Network connectivity with FacePages</li>
<li>How to make a WP theme responsive (adapting to different screen sizes such as Smart Phones Tablets and bigger)</li>
</ul>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile1-800.jpg"><img class="alignnone size-large wp-image-22519" title="XO on Mobile" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile1-800-460x306.jpg" alt="XO on Mobile" width="460" height="306" /></a></p>
<p><span id="How_to_expand_XO_functionality"><br />
<h3>How to expand XO functionality?</h3>
<p></span></p>
<p>The most obvious expansions are via plug-ins. We will show how to make the best use of plug-ins for the Mobile Web, Social Networking, Social Media Publishing, Social Network Marketing as well as for more attractive display. Time permitting we will look into additional functions, such as shopping cart or marketing specific scripts.</p>
<p>We also will start looking into another important chapter:</p>
<p><strong>How to convert your XO sites into a Mobile App!</strong></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile2-460.jpg"><img class="alignnone size-full wp-image-22522" title="XO on iPhone" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile2-460.jpg" alt="XO on iPhone" width="460" height="690" /></a></p>
<p><span id="Build_an_extraordinary_Site"><br />
<h3>Build an extraordinary Site</h3>
<p></span></p>
<p>In order to make the understanding easier, we will build a new site during the 2 days event. Please join our pre-seminar call on Thursday to prepare the event by setting up a new XO powered site.</p>
<p><span id="Materials"><br />
<h3>Materials</h3>
<p></span></p>
<p>All materials will be provided. You will just need some images/photos, videos and other content you may want to use to populate the XO site.</p>
<p><span id="Schedule"><br />
<h3>Schedule</h3>
<p></span></p>
<p>Saturday and Sunday, 28/29 January, 2012 from 1 pm London time till 9 pm London time.</p>
<p><span id="Tickets"><br />
<h3>Tickets</h3>
<p></span></p>
<p>Tickets are available on our new shop at HIOD.com. Please click on the below image to order.</p>
<p><a href="http://hiod.com/shop/ycademy-online-seminar-tickets/ycademy-online-seminar-january-2012/" rel="me" ><img class="alignnone size-large wp-image-22521" title="Ycademy Online Seminar Ticket" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/512x512-ycademy-shop-1-460x460.png" alt="Ycademy Online Seminar Ticket" width="460" height="460" /></a></p>
<p>Discounts as usual for Ycademy Pros: Please mail Bianca at bianca(at)ycademy.com for the coupon code.</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wp-best-shop/' rel='bookmark' title='Ycademy Online Seminar January 2010'>Ycademy Online Seminar January 2010</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar/' rel='bookmark' title='Ycademy Online Seminar'>Ycademy Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-april-2011/' rel='bookmark' title='Ycademy Online Seminar April 2011'>Ycademy Online Seminar April 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo/ycademy-online-seminar-january-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semiomantics XO 2011 for WordPress</title>
		<link>http://yorgonestoridis.com/q/yorgo-nestoridis/semiomantics-xo-2011-for-wordpress-2/</link>
		<comments>http://yorgonestoridis.com/q/yorgo-nestoridis/semiomantics-xo-2011-for-wordpress-2/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 18:03:35 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22499</guid>
		<description><![CDATA[A clip with XO 2011 Sites &#160; The clip presents some of the custom sites built on Semiomantics XO 2011. Semiomantics XO 2012 will be released in January to catch up with the latest WordPress developments. Incoming search terms:semiomantics xo wordpressRelated posts: Semiomantics XO 2011 for WordPress Best WordPress and Semiomantics Semiomantics XO 2011 Release FAQ Semiomantics XO 2011 WordPress 2.8 Baker
Related posts:<ol>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress/" rel="bookmark" title="Semiomantics XO 2011 for WordPress">Semiomantics XO 2011 for WordPress</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/best-wordpress-and-semiomantics/" rel="bookmark" title="Best WordPress and Semiomantics">Best WordPress and Semiomantics</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-semiomantics-yorgo-nestoridis-development/semiomantics-xo-2011-faq/" rel="bookmark" title="Semiomantics XO 2011 Release FAQ">Semiomantics XO 2011 Release FAQ</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2011/" rel="bookmark" title="Semiomantics XO 2011">Semiomantics XO 2011</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/wordpress-2-8-baker/" rel="bookmark" title="WordPress 2.8 Baker">WordPress 2.8 Baker</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="A_clip_with_XO_2011_Sites"><br />
<h2>A clip with XO 2011 Sites</h2>
<p></span></p>
<p>&nbsp;<br />
<iframe width="560" height="355" src="http://www.youtube.com/embed/JZDK0ZFIXIY?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe><br />
The clip presents some of the custom sites built on Semiomantics XO 2011.</p>
<p>Semiomantics XO 2012 will be released in January to catch up with the latest WordPress developments.</p>
<p><span id="Incoming_search_terms:"><br />
<h4>Incoming search terms:</h4>
<p></span>
<ul>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress-2/" title="semiomantics xo wordpress">semiomantics xo wordpress</a></li>
</ul>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress/' rel='bookmark' title='Semiomantics XO 2011 for WordPress'>Semiomantics XO 2011 for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/best-wordpress-and-semiomantics/' rel='bookmark' title='Best WordPress and Semiomantics'>Best WordPress and Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-semiomantics-yorgo-nestoridis-development/semiomantics-xo-2011-faq/' rel='bookmark' title='Semiomantics XO 2011 Release FAQ'>Semiomantics XO 2011 Release FAQ</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2011/' rel='bookmark' title='Semiomantics XO 2011'>Semiomantics XO 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-2-8-baker/' rel='bookmark' title='WordPress 2.8 Baker'>WordPress 2.8 Baker</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo-nestoridis/semiomantics-xo-2011-for-wordpress-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12 Principles of Animation with After Effects</title>
		<link>http://yorgonestoridis.com/q/yorgo-nestoridis/12-principles-of-animation-with-after-effects/</link>
		<comments>http://yorgonestoridis.com/q/yorgo-nestoridis/12-principles-of-animation-with-after-effects/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 08:31:10 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Media Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[U Q Me]]></category>
		<category><![CDATA[Work from Home]]></category>
		<category><![CDATA[Working from Home]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Yorgo Nestoridis Media Marketing]]></category>
		<category><![CDATA[Yorgo Nestoridis News]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22494</guid>
		<description><![CDATA[Animation for Beginners with After Effects Since Disney&#8217;s hand-drawn animation, nothing has changed when it comes to the basic principles of animation. The success of Disney was not just in the design of Mickey and friends but in the way the characters were put into motion. At Saturday&#8217;s Ycademy Seminar we will explain the 12 Principles of Animation and see, how to apply them with After Effects. 1. Slow in &#8211; slow out Acceleration and deceleration is created with Easy Ease in and out functions is AE. The effect creates fluid motion. 2. Anticipation Anticipation designs the action leading to the actual movement, like the backwards swing before hitting a ball with a golf club. Anticipation prepares the viewer for the action which will occur. Surprise actions can be more effective without anticipation. 3. Squash and Stretch Squashing and stretching blows life into a volume. The rule is, not to change the volume while designing the effect: a vertical squash goes with a horizontal stretch. 4. Arc Objects tend to move along an arc, rather than along straight lines. In After Effects we animate along a path. 5. Straight Ahead Action vs. Pose to Pose Straight Ahead Action refers to [...]
Related posts:<ol>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-auto-parts-by-genesbiz/" rel="bookmark" title="Best Auto Parts by GenesBiz">Best Auto Parts by GenesBiz</a></li>
<li><a href="http://yorgonestoridis.com/people/gene-line-people/auto-parts-website-theme-for-wordpress/" rel="bookmark" title="Auto Parts Website for WP">Auto Parts Website for WP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="Animation_for_Beginners_with_After_Effects"><br />
<h2>Animation for Beginners with After Effects</h2>
<p></span></p>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
<li>
		<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Animation_for_Beginners_with_After_Effects">Animation for Beginners with After Effects</a>
	</li>
<li>
		<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Principles_of_Animation">12 Principles of Animation</a></p>
<ol class='toc-even level-2'>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Slow_in_-_slow_out">1. Slow in &#8211; slow out</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Anticipation">2. Anticipation</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Squash_and_Stretch">3. Squash and Stretch</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Arc">4. Arc</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Straight_Ahead_Action_vs._Pose_to_Pose">5. Straight Ahead Action vs. Pose to Pose</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Staging">6. Staging</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Exaggeration">7. Exaggeration</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Follow_Through_and_Overlapping_Action">8. Follow Through and Overlapping Action</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Secondary_Action">9. Secondary Action</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Timing">10. Timing</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Solid_Drawing">11. Solid Drawing</a>
			</li>
<li>
				<a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/#Appeal">12. Appeal</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'>&nbsp;</div>
<p>Since Disney&#8217;s hand-drawn animation, nothing has changed when it comes to the basic principles of animation. The success of Disney was not just in the design of Mickey and friends but in the way the characters were put into motion.</p>
<p>At Saturday&#8217;s Ycademy Seminar we will explain the</p>
<p><span id="Principles_of_Animation"><br />
<h2>12 Principles of Animation</h2>
<p></span></p>
<p>and see, how to apply them with After Effects.</p>
<p><span id="Slow_in_8211_slow_out"><br />
<h3>1. Slow in &#8211; slow out</h3>
<p></span></p>
<p>Acceleration and deceleration is created with Easy Ease in and out functions is AE. The effect creates fluid motion.</p>
<p><span id="Anticipation"><br />
<h3>2. Anticipation</h3>
<p></span></p>
<p>Anticipation designs the action leading to the actual movement, like the backwards swing before hitting a ball with a golf club. Anticipation prepares the viewer for the action which will occur. Surprise actions can be more effective without anticipation.</p>
<p><img class="alignnone size-full wp-image-22495" title="512webdesign5" src="http://yorgonestoridis.com/wp-content/uploads/2011/12/512webdesign5.jpg" alt="Yorgo Media Design" width="512" height="512" /></p>
<p><span id="Squash_and_Stretch"><br />
<h3>3. Squash and Stretch</h3>
<p></span></p>
<p>Squashing and stretching blows life into a volume. The rule is, not to change the volume while designing the effect: a vertical squash goes with a horizontal stretch.</p>
<p><span id="Arc"><br />
<h3>4. Arc</h3>
<p></span></p>
<p>Objects tend to move along an arc, rather than along straight lines. In After Effects we animate along a path.</p>
<p><span id="Straight_Ahead_Action_vs._Pose_to_Pose"><br />
<h3>5. Straight Ahead Action vs. Pose to Pose</h3>
<p></span></p>
<p>Straight Ahead Action refers to drawing frame by frame, while Pose to Pose refers to designing first the key-poses and then filling in the frames in-between, hence the terms of &#8220;keyframe&#8221; and &#8220;tweening&#8221;.&#8221;</p>
<p><span id="Staging"><br />
<h3>6. Staging</h3>
<p></span></p>
<p>Staging refers to the act of drawing the audiences attention to important actions or events in the movie. It has to do with camera positioning and handling and composition.</p>
<p><span id="Exaggeration"><br />
<h3>7. Exaggeration</h3>
<p></span></p>
<p>Well placed exaggeration can make movements more interesting.</p>
<p><span id="Follow_Through_and_Overlapping_Action"><br />
<h3>8. Follow Through and Overlapping Action</h3>
<p></span></p>
<p>Follow Through refers to the motion of objects after the action while Overlapping Action means that an action does not have to stop when or before another starts.</p>
<p><span id="Secondary_Action"><br />
<h3>9. Secondary Action</h3>
<p></span></p>
<p>Secondary action makes the principal action more interesting. While the principal action may be a man walking, secondary actions could be arm swinging, movements with the head and so on.</p>
<p><span id="Timing"><br />
<h3>10. Timing</h3>
<p></span></p>
<p>Speed of action impacts on perception and emotion created. One of the most difficult principles to master, often expressed with the distance between two keyframes in After Effects.</p>
<p><span id="Solid_Drawing"><br />
<h3>11. Solid Drawing</h3>
<p></span></p>
<p>This does not really refer to After Effects but to other programs you may use to draw objects, such as Photoshop.</p>
<p><span id="Appeal"><br />
<h3>12. Appeal</h3>
<p></span></p>
<p>Objects need to be appealing to draw in the audience. This is not only true for animated characters. The best animation is not eye-catching if what you show is not designed in an appealing or charismatic way.</p>
<p>After Effects is not just about motion, it&#8217;s about expression, design, appeal and emotion created. An animation designer is therefore a multi-tasker and the best are multi-talents!</p>
<p>&nbsp;</p>
<p><span id="Incoming_search_terms:"><br />
<h4>Incoming search terms:</h4>
<p></span>
<ul>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="12 principles of animation">12 principles of animation</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="principles of animation">principles of animation</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="12 animation principles">12 animation principles</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="12 principle of animation">12 principle of animation</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="after effect paper animation">after effect paper animation</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="squash and stretch after effects">squash and stretch after effects</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="Squash and Stretch TUTORIAL IN AFTER EFFECTS">Squash and Stretch TUTORIAL IN AFTER EFFECTS</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="after effects squash">after effects squash</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="12 animated principle animation">12 animated principle animation</a></li>
<li><a href="http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/" title="Straight Ahead Action and Pose to Pose animation principles">Straight Ahead Action and Pose to Pose animation principles</a></li>
</ul>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-auto-parts-by-genesbiz/' rel='bookmark' title='Best Auto Parts by GenesBiz'>Best Auto Parts by GenesBiz</a></li>
<li><a href='http://yorgonestoridis.com/people/gene-line-people/auto-parts-website-theme-for-wordpress/' rel='bookmark' title='Auto Parts Website for WP'>Auto Parts Website for WP</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/q/yorgo-nestoridis/12-principles-of-animation-with-after-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

