<?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>WebDea &#187; Blog</title>
	<atom:link href="http://www.webdea.com/a/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webdea.com</link>
	<description>Converting PSD 2 HTML, xHTML, CSS, Wordpress, Joomla, Drupal</description>
	<lastBuildDate>Tue, 31 Aug 2010 12:41:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Transparency</title>
		<link>http://www.webdea.com/css-transparency.html</link>
		<comments>http://www.webdea.com/css-transparency.html#comments</comments>
		<pubDate>Tue, 31 Aug 2010 12:41:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[cross browser]]></category>
		<category><![CDATA[css transparency]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=376</guid>
		<description><![CDATA[<a href="http://www.webdea.com/css-transparency.html"><img src="http://farm5.static.flickr.com/4114/4863107028_d612fda003_m.jpg" alt="CSS Transparency tips to know" align="left"></a>To make some element transparent you can use the css3 property opacity. This css3 property provides you with decent cross-browser support. This property accepts a value between 0 and 1 with 0 – totally transparent and 1 – no transparency at all. As usual, none of the IE browsers accept this property.]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4082/4863107516_2db6a1b2ba_m.jpg" alt="CSS Transparency tips to remember" align="right" /> To make some element transparent you can use the css3 property opacity. This css3 property provides you with decent cross-browser support. This property accepts a value between 0 and 1 with 0 – totally transparent and 1 – no transparency at all.</p>
<p>As usual, none of the IE browsers accept this property. So, you should include filter:alpha(opacity=80); in your css declaration. This time the opacity value lies between 0 and 100 (0 – the elements will be transparent, 100 – no transparency at all). Using these two properties we can get cross-browser transparency.</p>
<p>&lt;&#8211;[if gte IE5.5]&gt; .opaque {filter:alpha(opacity=80);}<br />
&lt;![endif]&#8211;&gt; .opaque {opacity:0.8; filter:alpha(opacity=80);}</p>
<h3>Transparency is Not Seen</h3>
<p>As a rule, there is lack of separation between foreground and background transparency. Note that when you give an opacity to an element, the whole element will be transparent (not background only but also the text). Of course, it influences the readability of the text. If even with the opacity of 0.5 the contrast between background and foreground can seem to be optimal, but it is not so pleasant to read the text. Thus, opacity values of 0.8 are recommended in this case.</p>
<h3>Internet Explorer Issue</h3>
<p>In case Active X scripting (or scripting in general) is disabled the transparency won&#8217;t work. Thus, you should always consider that if transparency is used, your site remains to be functional without the opacity applied. In other words, avoid putting content on top of each other. Thus, if the content can be accessed through a transparent element, even the modern browsers can’t guarantee the transparency.</p>
<h3>Capricious Firefox</h3>
<p><img src="http://farm5.static.flickr.com/4099/4862487755_9d92d17509_m.jpg" alt="ICSS Transparency for all" align="right" /></p>
<p>In case you use CSS properties such as line-height and text-decoration, Firefox can make text starts jumping around or shift background images and surrounding borders. Long before opacity, Mozilla used its own property called -moz-opacity. By abusing this, we can simply set the opacity for Safari and Opera and disable it again for Firefox.</p>
<p>&lt;&#8211;[if gt IE5]&gt; .opaque {filter:alpha(opacity=80);}<br />
&lt;![endif]&#8211;&gt; .opaque {opacity:0.8; -moz-opacity:1;}</p>
<p>Note that such transparency can be applied in Firefox in case you have controlled environment. However, it is better to avoid transparency in Firefox because it can be really irritating and unpredictable.</p>
<p><em>Reference: www.onderhond.com/blog/work/css-transparency</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/css-transparency.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Specificity and Exactness Explained</title>
		<link>http://www.webdea.com/css-specificity.html</link>
		<comments>http://www.webdea.com/css-specificity.html#comments</comments>
		<pubDate>Tue, 24 Aug 2010 12:35:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[cross browser]]></category>
		<category><![CDATA[CSS Specificity and Exactness]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[id]]></category>
		<category><![CDATA[pseudo classes]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=371</guid>
		<description><![CDATA[<a href="http://www.webdea.com/css-specificity.html"><img src="http://farm5.static.flickr.com/4119/4863103764_8911d0467c_m.jpg" alt="CSS Specificity and Exactness to know" align="left"></a>CSS is all about cascading or waterfall principle. You may know this principle, but still some ways CSS is constructed are obscure. So, let’s try to find out the specificity of CSS selectors that are abased on the struggle for dominance principle. First of all, we should interpret the concept of CSS specificity... ]]></description>
			<content:encoded><![CDATA[<p>CSS is all about cascading or waterfall principle. You may know this principle, but still some ways CSS is constructed are obscure. So, let’s try to find out the specificity of CSS selectors that are abased on the struggle for dominance principle.<img src="http://farm5.static.flickr.com/4081/4863104240_5c6be2b2cc_m.jpg" alt="CSS Specificity and Exactness to remember" align="right"> </p>
<p>First of all, we should interpret the concept of CSS specificity: </p>
<p>The exactness with which a vocabulary term covers a concept.</p>
<p>With many ways to target a single html element, CSS can do it through classes, pseudo-classes, ids, through CSS selectors, the html elements themselves or even inline. Thus, it really matters whether you target a div through its class instead of its id, because all the above mentioned ways carry a different weight of importance. </p>
<p>In other words, each selector carries a weight of its specificity and the sum of all these values is the computed weight for a selector. Here are some possible weights: </p>
<ul>
<li>1,0,0,0 : inline styles</li>
<li>0,1,0,0 : ids</li>
<li>0,0,1,0 : classes, pseudo-classes and attributes</li>
<li>0,0,0,1 : elements and pseudo-elements</li>
<li>0,0,0,0 : the * (universal selector)</li>
</ul>
<p>Inherited properties and combinator (in the end of this list) carry no weight at all. Note that universal selector will still overwrite inherited properties. </p>
<p>Some elements can be targeted by several selectors carrying the same weight. In this case, the selector appearing last in the source will take preference. It is an important rule that can be abused when you deal with IE6. </p>
<h3>Specificity Calculated</h3>
<p>Note that the above mentioned calculations are not made in base-10. In other words, you are not able to get 11 classes to overwrite 1 id. Still the representation of the values with &#8220;,&#8221; can help to avoid some confusion. Just add all specificities within their respective weight category and compare results to other selectors. <img src="http://farm5.static.flickr.com/4099/4863104646_4207f32262_m.jpg" alt="CSS Specificity and Exactness Explained for all" align="right"></p>
<blockquote><p>h1 (weight: 0,0,0,1 )<br />
 * h1 (weight: 0,0,0,1 )<br />
 .class #id #id2 p (weight: 0,2,1,1 )<br />
#id2 #id p .class (weight: 0,2,1,1 )<br />
.class.class2>*~p (weight: 0,0,2,1 )</p></blockquote>
<h3>Important Addendum to Consider</h3>
<blockquote><p>h1 {color:#c0c0c0 !important;}</p></blockquote>
<p>Declaring something !important you fix that value as unchangeable. This declaration should be used with caution and only within user style sheets or a piece of code that can’t be overruled by others. So, try to avoid it. </p>
<p><em>Reference: www.onderhond.com/blog/work/css-specificity</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/css-specificity.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Selectors Guide</title>
		<link>http://www.webdea.com/css-selectors-guide.html</link>
		<comments>http://www.webdea.com/css-selectors-guide.html#comments</comments>
		<pubDate>Tue, 17 Aug 2010 14:15:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[cross browser]]></category>
		<category><![CDATA[css sselectors]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=365</guid>
		<description><![CDATA[<a href="http://www.webdea.com/css-selectors-guide.html"><img src="http://farm5.static.flickr.com/4099/4755058786_552ce219b5_m.jpg" alt="CSS Selectors tips to know" align="left"></a>We have already discussed CSS selectors that could be used without worrying about browser support in our previous articles. Now we are going to talk about the selectors that can quite useful in some browsers, but fail to work cross-browser. If you are going to style document, the selectors explained can help you a lot. ]]></description>
			<content:encoded><![CDATA[<p>We have already discussed CSS selectors that could be used without worrying about browser support in our previous articles. Now we are going to talk about the selectors that can quite useful in some browsers, but fail to work cross-browser.  </p>
<h3>The > Combinator</h3>
<p><img src="http://farm5.static.flickr.com/4099/4755059106_bd966b87e5_m.jpg" alt="CSS Selectors Guide to remember" align="right"> </p>
<blockquote><p>ul>li { *properties* }</p></blockquote>
<p>This > combinator targets the specified elements exactly 1 level below the source level. Thus if look at an example we offer, the selector will target all li elements that are nested right below the ul element.</p>
<p>However, IE6 doesn’t support this selector. </p>
<h3>The + Combinator</h3>
<blockquote><p>h2+p { *properties* }</p></blockquote>
<p>The + combinator targets an element on the same level, directly following the source target. In the example above, it will target every p tag directly preceded by an h2 tag. </p>
<p>IE6 doesn’t support this selector too. </p>
<h3>The ~ Combinator</h3>
<blockquote><p>p~p { *properties* }</p></blockquote>
<p>This combinatory selects all elements on the same level, following the source target. It is quite similar to the + combinator but more flexible. </p>
<p>IE6 doesn’t support this selector.</p>
<h3>The Attribute Selector</h3>
<p><img src="http://farm5.static.flickr.com/4114/4755059462_b294b32cb7_m.jpg" alt="CSS Selectors Guide for all" align="right"></p>
<blockquote><p>input[type=text] { *properties* }</p></blockquote>
<p>The class and id selectors are shorthands for specific attribute selectors. For example, the .nav selector can also be written as ul[class=nav]. Note that an attribute selector can be defined on an html tag, while the class selector is used separately from html tags. </p>
<p>The selector isn&#8217;t limited to the &#8220;=&#8221; operator, but can also accept *=, $=, ^=, |= and ~= operators. However, cross-browser support for all these operators is not the best thing to mention about. </p>
<h3>The Pseudo-Classes</h3>
<blockquote><p>div:hover { *properties* }</p></blockquote>
<p>Pseudo-classes always start with a : followed by the class itself, and can be attached to any selector. Pseudo-classes refer to the context or the behavior of an element. In very specific cases they can be made to work cross-browser (the :active class on the a tag for example) but most of the pseudo-classes have limited to no cross-browser support. </p>
<h3>The Pseudo-Elements</h3>
<blockquote><p>div::after { *properties* }</p></blockquote>
<p>Pseudo-elements resemble pseudo-classes quite a lot. They share the same syntax although this will change for pseudo-elements introduced in css3. The single : will be replaced by a double ::. Pseudo-elements can help to target specific parts of an element, or insert completely new elements before or after the source element. </p>
<p>In the example above, a virtual structural element is added after all divs. In this virtual element, content can be inserted which can then be styled. This virtual element will not show up in the dom however. </p>
<h3>Complex CSS Rules</h3>
<blockquote><p>.box>*:first-child~* { *properties* }</p></blockquote>
<p>Well, the above example, can be just an exercise for you to solve. So, is everything clear? </p>
<p><em>Reference: www.onderhond.com/blog/work/css-selectors-pt2</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/css-selectors-guide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic CSS Selectors</title>
		<link>http://www.webdea.com/basic-css-selectors.html</link>
		<comments>http://www.webdea.com/basic-css-selectors.html#comments</comments>
		<pubDate>Tue, 10 Aug 2010 14:08:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[basic css selectors]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=359</guid>
		<description><![CDATA[<a href="http://www.webdea.com/basic-css-selectors.html"><img src="http://farm5.static.flickr.com/4123/4754413617_c1bf882a60_m.jpg" alt="Basic CSS Selectors to know" align="left"></a>It is not so hard to write rules for a specific document, the other thing is to write CSS for entire site. It is advisable to verify that when a context is defined, it is necessary for an element to appear within that context to receive its defined style. In css, pattern matching rules determine which style rules apply to elements in the document tree. ]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4138/4755055208_91da8a6b6d_m.jpg" alt="Basic CSS Selectors to remember" align="right">Here we are going to explain some basic existing selectors that can are considered to be most used today. But first of all, let’s see the definition provided by w3 schools:</p>
<p>In css, pattern matching rules determine which style rules apply to elements in the document tree. These patterns, called selectors, may range from simple element names to rich contextual patterns. If all conditions in the pattern are true for a certain element, the selector matches the element. </p>
<p>So, let’s start.</p>
<h3>The * Selector</h3>
<blockquote><p>* { *properties* }</p></blockquote>
<p>The * selector just selects everything. This selector is quite useful if put in a specific context. However, its usage is quite limited today if compare with others. </p>
<h3>HTML Tags</h3>
<blockquote><p>p { *properties* }</p></blockquote>
<p>html tag that can appear within the body, can be addressed through CSS. Note that not all html tags accept all CSS properties. In the example above, all p tags within the document are given a range of properties. </p>
<h3>Classes and IDs</h3>
<blockquote><p>#header { *properties* } .header { *properties* }</p></blockquote>
<p>Thus, the selector starting with # refers to an html element with an id=&#8221;header&#8221; applied to it. The selector starting with . refers to an html element with a class=&#8221;header&#8221; applied to it. You can find classes and ids quite useful if need to style semantic elements across multiple pages. </p>
<h3>Descendant Selectors</h3>
<blockquote><p>form p { *properties* }</p></blockquote>
<p>You can target html elements based on their context selecting one or more elements above the targeted element. You can choose between simple selectors that are separated by a whitespace and have no limit to the amount of descending selectors as well as complex selectors that are interpreted from left to right. </p>
<p>According to a given example, all p tags within a form will be given a range of properties.</p>
<h3>Combining All of the Above</h3>
<p><img src="http://farm5.static.flickr.com/4077/4754414969_3fc75336c9_m.jpg" alt="Basic CSS Selectors for all" align="right"></p>
<blockquote><p>.serviceNav li * { *properties* }</p></blockquote>
<p>On the whole, there are no limits to the length or complexity of the selector. </p>
<p>In the example above, a selector matches everything within a li element, which appears in an element with class=&#8221;serviceNav&#8221; applied to it.</p>
<p>It is not so hard to write rules for a specific document, the other thing is to write CSS for entire site. It is advisable to verify that when a context is defined, it is necessary for an element to appear within that context to receive its defined style. If not, it&#8217;s better to leave the extra context selectors out. </p>
<p>Thus, in case you are going to style document, the selectors explained above can help you a lot. Of course, it will not result in the cleanest, leanest CSS possible, but it will be stable cross-browser. </p>
<p><em>Reference: www.onderhond.com/blog/work/css-selectors-pt1</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/basic-css-selectors.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional CSS</title>
		<link>http://www.webdea.com/conditional-css.html</link>
		<comments>http://www.webdea.com/conditional-css.html#comments</comments>
		<pubDate>Tue, 03 Aug 2010 13:13:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[conditional css]]></category>
		<category><![CDATA[cross browser compatability]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=354</guid>
		<description><![CDATA[<a href="http://www.webdea.com/conditional-css.html"><img src="http://farm5.static.flickr.com/4101/4751388943_8a70d90ed9_m.jpg" alt="Conditional CSS tips to know" align="left"></a>It is desirable that browser specific bugs should be targeted and fixed each browser specifically with no impact on the way general CSS is written. If a bug is fixed in a certain browser version, we need a possibility to remove fixes without worrying about browser compatibility. ]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4077/4752030368_e15506d5a2_m.jpg" alt="Conditional CSS to remember" align="right"> It is desirable that browser specific bugs should be targeted and fixed each browser specifically with no impact on the way general CSS is written. If a bug is fixed in a certain browser version, we need a possibility to remove fixes without worrying about browser compatibility. </p>
<p>Microsoft offers to use conditional comments. Thus, you can write a special CSS file for their browsers. In other words, you include a separate CSS file for browsers that requires CSS fixes for a certain project instead of standardizing conditional comments. </p>
<p>It processes like a normal css file. The only difference is that only those browsers which are targeted will include the css file.</p>
<p>With targeting every browser in a separate CSS file is quite a lot of work that sometimes not possible within the constraints of a project. However, such process allows a developer to implement his often good ideas to use css without having to worry about complying to 5 (or more) browsers. <img src="http://farm5.static.flickr.com/4138/4751389853_269e16b70d_m.jpg" alt="Conditional CSS for all" align="right"></p>
<p>As you can see advantages outweigh disadvantages of such a decision. It is necessary to look ahead and try to build a standard till CSS remains to be a problem with bugs in browsers. It is necessary to devise a system where the bugs can be addressed without reverting to hacks and tricks. </p>
<p><em>Reference: www.onderhond.com/blog/work/conditional-css</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/conditional-css.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class Attribute</title>
		<link>http://www.webdea.com/class-attribute.html</link>
		<comments>http://www.webdea.com/class-attribute.html#comments</comments>
		<pubDate>Tue, 27 Jul 2010 13:06:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[class attribute]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web developer]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=349</guid>
		<description><![CDATA[<a href="http://www.webdea.com/class-attribute.html"><img src="http://farm5.static.flickr.com/4139/4752025868_73619971dd_m.jpg" alt="class attribute tips to know" align="left"></a>Classes help you to structure your document as well as add semantic meaning to elements where html falls short. It is better not to apply too many classes on one single element and avoid classes that contain behavior instead of semantic meaning. In case you use the class attributes correctly, you will get flexible and future proof structure to your documents. ]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4076/4752026416_6739b222b0_m.jpg" alt="class attribute to remember" align="right">In case you need to target a range of identical elements and elements that occur several times on a single page, you should use the class attribute. According to w3c class attribute can be explained as following:  </p>
<p>This attribute assigns a class name or set of class names to an element. Any number of elements may be assigned the same class name or names. Multiple class names must be separated by white space characters. </p>
<p>In other words, we can highlight three main things concerning class attribute: </p>
<ul>
<li>It allows to assign more than one class name to a single element (separated by white space characters)</li>
<li>You can use a class name or a combination of class names more than once within the same document</li>
<li>You can assign a class name or a combination of class names to different elements</li>
</ul>
<p>Thus, class attribute provides you with more opportunities than id attribute. </p>
<h3>When Use the Class Attribute</h3>
<p>First of all, decide whether an element will be repeated more than once on the same page or on any other page within the same project. If yes, you should use class attribute instead of id attribute. Thus, you make it possible for javascript and CSS as well as for other processes to retrieve elements within one document and process them all together. In such a way you can define a box for product descriptions, put multiple instances of this box on the same page and have them styled identically by one single piece of css.</p>
<p>Note that there are the same restrictions for the class attribute as for the id attribute. Here they are:</p>
<p>Not valid in base, head, html, meta, param, script, style, and title elements.<img src="http://farm5.static.flickr.com/4098/4751385915_e7b7116b7e_m.jpg" alt="class attribute for all" align="right"></p>
<p>You can assign multiple classes to a single element. In other words, an element can be given a base class, then can be further specified by adding extra classes. Seems to be quite simple, but still some errors occur. First of all, you should decide whether you are further specifying a certain element by itself, or just trying to adapt an element according to its context. In case you choose the latter, classes or ids higher up in the structure should be used in combination with the element class to target these elements. </p>
<p>You can add as much classes to one element as you need. However, it is not recommended to add 10 classes to one element because of code readability. </p>
<p>The order of the specified classes on an element is not important. Thus, class=&#8221;product promo&#8221; is the same as class=&#8221;promo product&#8221;.</p>
<p>Anyway, if you use extra classes to specify element, it is better to keep a logical ordering where base class comes first. </p>
<h3>Apply Unrelated Class to One Element</h3>
<p>You also can add two semantically unrelated classes to a single element or contain fixes and apply them to elements through one class. If you need examples, &#8220;clearfix&#8221; class and &#8220;hidden&#8221; class are the most popular. </p>
<p>The other way to use unrelated classes is to apply common behavior to a class. For example, you can contain recurring visual characteristics (1 pixel gray border with 0.5em padding) and have them applied to an element by simply adding the class. </p>
<h3>Apply the Same Class on Unrelated Elements</h3>
<p>It is not advisable because such practice may lead to unexpected results when code gets copied across pages. Remember that it is better to use classes to identify elements that can be repeated within a single document.</p>
<p><em>Reference: www.onderhond.com/blog/work/class-attribute</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/class-attribute.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Promotion Tips</title>
		<link>http://www.webdea.com/blog-promotion-tips.html</link>
		<comments>http://www.webdea.com/blog-promotion-tips.html#comments</comments>
		<pubDate>Tue, 20 Jul 2010 11:33:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blog promotion tips]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[stumbleupon]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=344</guid>
		<description><![CDATA[<a href="http://www.webdea.com/blog-promotion-tips.html"><img src="http://farm2.static.flickr.com/1185/4732926624_32ecfe473b_m.jpg" alt="blog promotion tips to know" align="left"></a>Talking about blog promotion you should differ genuine promotion and spam. There are quite a lot of articles on the web that offer you various methods to make your blog popular. However, most of them are ordinary spam methods. Here you can find promotion methods that give you a good conscience.]]></description>
			<content:encoded><![CDATA[<p>Talking about blog promotion you should differ genuine promotion and spam. There are quite a lot of articles on the web that offer you various methods to make your blog popular. However, most of them are ordinary spam methods. Here you can find promotion methods that give you a good conscience. </p>
<h3>Use Other Blogs</h3>
<p><img src="http://farm2.static.flickr.com/1125/4732926984_ee82061756_m.jpg" alt="blog promotion tips to remember" align="right"></p>
<p>It is popular method to get noticed. However, there are also several ways to use it.</p>
<p>Some people prefer to use trackback links within the comment section. It can be quite annoying, because it breaks the flow of the comments and some people even suppose that such trackbacks are just spam. Some blogs put the trackback links in a separate section.</p>
<p>The other thing you can do to be noticed is to post related articles in the comment section. It is appropriate if you post article that answers the bloggers questions. If you just post an article with similar theme this also may look like ordinary spam. So, ask yourself whether readers of the blog will find something useful in your article that you can’t express in small post.  </p>
<p>And the final method to use is to add a link to your blog in your name in the comments. It is a standard feature on every blog so why not use it for your purpose? Especially if you post a relevant and interesting comment. </p>
<h3>Use Others</h3>
<p><img src="http://farm2.static.flickr.com/1104/4732927326_2a8bddd381_m.jpg" alt="blog promotion tips for all" align="right">The effectiveness of this method is also depends on the quality of your content. You can submit your articles to recaps of the most interesting articles of the last week or month. Of course you will be included in case your information is valuable or quite entertaining. In such a way, you can reach an interested audience. </p>
<p>This method is not about promoting your blog. It is all about providing high quality content to interested parties. </p>
<h3>Use Web 2.0</h3>
<p>This method allows you to communicate with other people interested in your business as well as allows you to attract potential clients. This time you also need to have valuable content and time to search for interesting topics or some other creative ideas to share with others. You can get noticed with del.icio.us, ma.gnolia, dig, stumbleupon, technocrati, twitter, facebook, etc. </p>
<p>There are quite a lot of techniques concerning Web 2.0. For example, you can submit excerpts of your articles with links to the full post, search for other articles in your niche and twitter or stubleupon them, you also can create your own online group, etc. The main thing is to start and be consistent as well as always try something new to improve. </p>
<p><em>Reference: www.onderhond.com/blog/work/blog-promotion</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/blog-promotion-tips.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Address Tag</title>
		<link>http://www.webdea.com/address-tag.html</link>
		<comments>http://www.webdea.com/address-tag.html#comments</comments>
		<pubDate>Tue, 13 Jul 2010 11:24:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[address tag]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web developer]]></category>

		<guid isPermaLink="false">http://www.webdea.com/the-address-tag.html</guid>
		<description><![CDATA[<a href="http://www.webdea.com/address-tag.html"><img src="http://farm2.static.flickr.com/1437/4732924148_1582dcf5cc_m.jpg" alt="Address Tag tips to know" align="left"></a>Trying to be a professional web designer we try to learn everything necessary about web standards and even more. Now you know a lot about screen readers and people with disabilities browsing the web, how machines differ from humans as well as about semantics and syntax. All this is quite useful.]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm2.static.flickr.com/1174/4732924814_9a9448b510_m.jpg" alt="Address Tag to remember" align="right" />Trying to be a professional web designer we try to learn everything necessary about web standards and even more. Now you know a lot about screen readers and people with disabilities browsing the web, how machines differ from humans as well as about semantics and syntax. All this is quite useful. However, sometimes it is also required to forget about standards and create something new in your code.</p>
<p>Perhaps, you have already visited w3schools and check up on the available xhtml tags. Here is the actual definition of the address tag according to w3c site:</p>
<p>The address element may be used by authors to supply contact information for a document or a major part of a document such as a form. This element often appears at the beginning or end of a document.</p>
<p>Seems to be confusing? Well, the purpose of the address tag is to provide a means of contact for a specific piece of information on the document. However, the definition is quite vague and you can suggest that it can be used for any address stated within a document. Thus, w3schools give an explanation:</p>
<p>Note: The address tag should NOT be used as describing a postal address, unless it is a part of the contact information.</p>
<p>Thus, the address tag is intended for visitors willing to contact the author of the web document. However, you can see an address tag and expect that it is used for marking up an actual address, not for general contact information regarding the author of the document. This is quite possible… if you forget about standards:<img src="http://farm2.static.flickr.com/1407/4732280845_654c8d0ee8_m.jpg" alt="Address Tag for all" align="right" /></p>
<p>&lt;address&gt;<br />
&lt;span class= &#8220;street&#8221;&gt;&#8230;&lt;/span&gt;<br />
&lt;span class=&#8221;city&#8221;&gt;&#8230;&lt;/span&gt;<br />
&lt;span class=&#8221;country&#8221;&gt;&#8230;&lt;/span&gt;<br />
&lt;/address&gt;</p>
<p>As you can see this article is quite ironical and of course, you should stick to the standards. But still sometimes it is rather interesting to be more creative and go against standards if it does no harm. This rule can be applied to web design as well as to life.</p>
<p><em>Reference: www.onderhond.com/blog/work/address-tag</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/address-tag.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips to Create Printer Friendly Web Pages</title>
		<link>http://www.webdea.com/create-printer-friendly-webpages.html</link>
		<comments>http://www.webdea.com/create-printer-friendly-webpages.html#comments</comments>
		<pubDate>Tue, 06 Jul 2010 12:04:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=325</guid>
		<description><![CDATA[<a href="http://www.webdea.com/create-printer-friendly-webpages.html"><img src="http://farm2.static.flickr.com/1239/4730196238_fee7f22a54_m.jpg" alt="Printer Friendly tips to know" align="left"></a>Trying to create great looking web page we add various logos, navigation links, forms, flash widgets, blogrolls, etc. However, the things that look cool inside the web browser are useless for people who want to print out your web pages on paper. Here is a decision to turn your blog into a printer friendly website. ]]></description>
			<content:encoded><![CDATA[<p>Trying to create great looking web page we add various logos, navigation links, forms, flash widgets, blogrolls, etc. However, the things that look cool inside the web browser are useless for people who want to print out your web pages on paper. Here is a decision to turn your blog into a printer friendly website and to allow your readers to consume less ink to print your articles.</p>
<h3>Step 1</h3>
<p><img src="http://farm2.static.flickr.com/1163/4729550605_2cca4ac139_m.jpg" alt="create printer friendly page" align="right" /></p>
<p>Create a new CSS file with the following:</p>
<p>body {font-family: arial,helvetica,sans; font-size: 13px; background:fff; color:000;}<br />
// Black Text on White Background<br />
a,a:visited,a:link {color:#000; text-decoration:none}<br />
// Do no underline links<br />
.noprint {display:none} //</p>
<h3>Step 2</h3>
<p>Then, open the HTML source of your main blog template and enclose sidebars, ad blocks, header logo, footers, etc (except the content) inside the following &lt;span&gt; tag to instruct the browser not to print anything that appears inside this tag:</p>
<p>&lt;span class=”noprint”&gt; ….. &lt;/span&gt;</p>
<h3>Step 3</h3>
<p><img src="http://farm2.static.flickr.com/1361/4730196846_d63ed47ed3_m.jpg" alt="printer friendly page for all" align="right" /></p>
<p>The last thing to do is to add the following line inside the &lt;HEAD&gt; tag of your blog template:</p>
<p>&lt;link rel=”stylesheet” media=”handheld,print” href=”print.css” /&gt;</p>
<p>That’s all. Such technique can also be used if your readers want to print your blog as a PDF document.</p>
<p><em>Reference: www.labnol.org/internet/design/create-printer-friendly-blog-css-trick/2109/</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/create-printer-friendly-webpages.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inbound Marketing to Make Your Site Found</title>
		<link>http://www.webdea.com/inbound-marketing.html</link>
		<comments>http://www.webdea.com/inbound-marketing.html#comments</comments>
		<pubDate>Tue, 29 Jun 2010 11:57:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[dilicious]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[inbound marketing]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webdea.com/?p=320</guid>
		<description><![CDATA[<a href="http://www.webdea.com/inbound-marketing.html"><img src="http://farm2.static.flickr.com/1367/4729546863_75392bbefd_m.jpg" alt="Inbound Marketing tips to know" align="left"></a>Focus on finding customers or try to be found by customers? This is the main difference between outbound marketing and inbound marketing. Are you in places where your potential customers searching? If you are not sure about this or maybe just start your online project, inbound marketing will help you a lot to become popular on the Web.]]></description>
			<content:encoded><![CDATA[<p>Notwithstanding economic situation people continue to look for your business. <img src="http://farm2.static.flickr.com/1390/4730193152_b92ae5e44f_m.jpg" alt="Inbound Marketing to remember" align="right"> The other thing is whether you are found. In other words, are you in places where your potential customers searching? If you are not sure about this or maybe just start your online project, inbound marketing will help you a lot to become popular on the Web.</p>
<p>Focus on finding customers or try to be found by customers? This is the main difference between outbound marketing and inbound marketing. Outbound marketing uses print advertising, TV advertising, cold-calling, spam, junk mail or trade shows to attract customers. However, these techniques are poorly targeted and quite expensive. </p>
<p>The other thing is inbound marketing that is all about creating and providing information that can be really interesting for your customers. The tools of inbound marketing are social media sites (<a href="http://www.twitter.com" >Twitter</a>, <a href="http://www.delicious.com">Delicious</a>, <a href="http://www.facebook.com">Facebook</a>, <a href="http://www.digg.com">Digg</a>), your brain power and time. To do your best with inbound marketing techniques you should rely on the thickness of your brain instead of thickness of your wallet. </p>
<h3>Things to Start With</h3>
<p>The thing you should aim to is creating a site with engaging and useful information that meets all the needs of you potential customers as well as demonstrate your experience in some field. It is necessary to host such content on your main web site domain for search engine optimization purposes. However, if you are limited in resources, you can start with a free <a href="http://wordpress.com/">Wordpress</a> blog. All you need is to start creating valuable content and then develop a blog on your own domain as soon as you get extra resources.<img src="http://farm2.static.flickr.com/1330/4730193458_3cc6e73a90_m.jpg" alt="Inbound Marketing for all" align="right"></p>
<p>The next step is to engage with social media. You should create a <a href="https://twitter.com/signup">Twitter account</a> and start publishing excerpts of your articles with links to the full texts. You also can use Twitter account to follow other users with interests similar to yours and your customers, retweet the tweets that seem to be interesting as well as relevant, <a href=" http://blog.twitter.com/2007/09/tracking-twitter.html">search for keywords</a> related to your business and respond with helpful information. </p>
<p>To set up a Facebok page is much easier, but it can be only the second step after using Twitter effectively. And of course, don’t forget to use Delicious bookmarks that allow you to share your content with others. On the whole, there are quite a lot of techniques to attract potential clients via social media. My task is to make you start without too much information to consider. </p>
<h3>Is Social Media Enough?</h3>
<p>Social media is all about taking part in conversations going on in recognized places online. Inbound marketing is also creating content that is relevant and helpful. The other thing is to present it in a search engine friendly manner. And this time you need to know not only social media tips but also <a href="http://www.youtube.com/watch?v=4_1kfMR11wQ">Search Engine Optimization techniques</a>. For example, you can make keyword research to find out possible phrases your potential clients use looking for some information concerning your industry. There are quite a lot of resources on the web for training in case you want to do it yourself. You also can hire a web developer who will take your site for the next level. </p>
<p><em>Reference: www.aboundmarketing.com/1011/inbound-marketing-are-you-being-found/</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdea.com/inbound-marketing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
