<?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>Web Design - css/php/seo &#187; css</title>
	<atom:link href="http://www.claudiocugia.com/web_design/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.claudiocugia.com/web_design</link>
	<description>Articles, code, tips&#38;tricks about web design and seo</description>
	<lastBuildDate>Fri, 14 Oct 2011 14:30:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Clearing floats with css</title>
		<link>http://www.claudiocugia.com/web_design/clearing-floats-with-css/</link>
		<comments>http://www.claudiocugia.com/web_design/clearing-floats-with-css/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 14:13:11 +0000</pubDate>
		<dc:creator>claudio</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[floats]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.claudiocugia.com/web_design/?p=289</guid>
		<description><![CDATA[I was reading an article about browser inconsistencies and in particular about what the author calls clearing floats &#8211; &#8220;when a container or wrapper div doesn&#8217;t correctly wrap around the containing divs&#8221;. He suggests using or in your container; however &#8230; <a href="http://www.claudiocugia.com/web_design/clearing-floats-with-css/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was reading <a href="http://anthonyshort.com.au/blog/comments/how-to-get-cross-browser-compatibility-everytime/" title="article by Anthony Short">an article</a> about <strong>browser inconsistencies</strong> and in particular about what the author calls <strong>clearing floats</strong> &#8211; &#8220;when a container or wrapper div doesn&#8217;t correctly wrap around the containing divs&#8221;.<br />
<span id="more-289"></span><br />
He suggests using
<pre class="brush: css; title: ; notranslate">overflow:auto</pre>
<p> or
<pre class="brush: css; title: ; notranslate">overflow:hidden</pre>
<p> in your container; however this solution makes the container div to have scrollbars which is not pleasant to the user eyes; the same author states that &#8220;You need to keep in mind that overflow:auto might cause some issues in Firefox&#8221; and IE7.</p>
<p><strong>My solution</strong>: just use
<pre class="brush: css; title: ; notranslate">display:table</pre>
<p> in your container or wrapper div; this way your div will wrap around the containing divs; moreover, you do not have to declare the height of the div because it will be computed by the browser itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.claudiocugia.com/web_design/clearing-floats-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful css classes</title>
		<link>http://www.claudiocugia.com/web_design/useful-css-classes/</link>
		<comments>http://www.claudiocugia.com/web_design/useful-css-classes/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 13:08:21 +0000</pubDate>
		<dc:creator>claudio</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.claudiocugia.com/web_design/?p=161</guid>
		<description><![CDATA[I&#8217;d like to share some css classes I often use in my projects. I will update this classes accordingly.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to share some css classes I often use in my projects.  I will update this classes accordingly.<br />
<span id="more-161"></span></p>
<pre class="brush: css; title: ; notranslate">
.marginetop{margin:15px 0 0 0}
.margineleft{margin:0 0 0 15px}
.marginebottom{margin:0 0 15px 0}
.margineright{margin:0 15px 0 0}

.nascondi{display:none}
.pulisci{clear:both}

.corsivo{font-style:italic}
.grassetto{font-weight:bold}
.sx{float:left}
.dx{float:right}
.centra{margin:0 auto; text-align:center}

.googlemap{
border:1px solid #f7931d;
overflow:hidden}

a[href$='.pdf'] {
    padding-right: 18px;
    background: transparent url(/images/icon_pdf.gif) no-repeat center right;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.claudiocugia.com/web_design/useful-css-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My reset.css</title>
		<link>http://www.claudiocugia.com/web_design/my-resetcss/</link>
		<comments>http://www.claudiocugia.com/web_design/my-resetcss/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 13:17:35 +0000</pubDate>
		<dc:creator>claudio</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.claudiocugia.com/web_design/?p=145</guid>
		<description><![CDATA[This is my version of the standard reset.css Eric Meyer posted some time ago in his website. Just copy it and paste it at the beginning of your css. I&#8217;ll be updating it accordingly. This little piece of code should &#8230; <a href="http://www.claudiocugia.com/web_design/my-resetcss/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is my version of the standard reset.css <a href="http://meyerweb.com/" title="Eric Meyer - website">Eric Meyer</a> posted some time ago in his website. Just copy it and paste it at the beginning of your css. I&#8217;ll be updating it accordingly. This little piece of code should reduce browser inconsistencies.<span id="more-145"></span></p>
<pre class="brush: css; title: ; notranslate">
*{text-shadow:#000 0 0 0}
/* safari text fix*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	/*vertical-align:baseline*/}
a img, :link img, :visited img {border:0}
table {
	border-collapse: collapse;
	border-spacing:0}
ul {list-style:none}
q:before, q:after,
blockquote:before, blockquote:after {
	content: &quot;&quot;}
:focus {outline:0}
html{
width:100%;
height:100%}
   body{
	text-align:center;
	margin:0 auto;
	height:100%}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.claudiocugia.com/web_design/my-resetcss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Porsche menu with css and Jquery</title>
		<link>http://www.claudiocugia.com/web_design/porsche_menu_css_jquery/</link>
		<comments>http://www.claudiocugia.com/web_design/porsche_menu_css_jquery/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 14:49:59 +0000</pubDate>
		<dc:creator>claudio</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[porsche menu]]></category>

		<guid isPermaLink="false">http://www.claudiocugia.com/web_design/?p=79</guid>
		<description><![CDATA[I came across the Porsche website yesterday and the menu on the left just draw my attention &#8211; graphically I liked it; after having studied carefully the code I noticed that it is not well-structured meaning that there is a &#8230; <a href="http://www.claudiocugia.com/web_design/porsche_menu_css_jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I came across the <a href="http://www.porsche.com/italy/" target="_self">Porsche</a> website yesterday and the menu on the left just draw my attention &#8211; graphically I liked it; after having studied carefully the code I noticed that it is not well-structured meaning that there is a lot of javascript in the html markup, a lot of divs and finally if you disable the css the links do not work .<span id="more-79"></span></p>
<p>So I decided to give it a try and rewrite the code using our beloved css, the jquery library (only for the alpha effects) and the <a title="ie7 on google code" href="http://code.google.com/p/ie7-js/" target="_self">ie7.js </a>script for our less beloved IE6. Let me say first that my menu just works fine with the css and the ie7.js only but I wanted to use the jquery library to make it similar to the one you find in thr Porsche website.</p>
<p>The menu is free to use, if you like just drop me a line telling me where you used it.</p>
<p><a href="http://www.claudiocugia.com/web_design/wp-content/uploads/2009/02/menu_porsche" target="_self">This is</a> the final result.<br />
Download the .zip file: <a href="http://www.claudiocugia.com/web_design/wp-content/uploads/2009/02/menu_porsche.zip">menu_porsche</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.claudiocugia.com/web_design/porsche_menu_css_jquery/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Web designer Venezia</title>
		<link>http://www.claudiocugia.com/web_design/web-designer-venezia/</link>
		<comments>http://www.claudiocugia.com/web_design/web-designer-venezia/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 22:34:38 +0000</pubDate>
		<dc:creator>claudio</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[siti]]></category>
		<category><![CDATA[siti internet]]></category>
		<category><![CDATA[web designer Padova]]></category>
		<category><![CDATA[web designer quarto d'altino]]></category>
		<category><![CDATA[web designer Treviso]]></category>
		<category><![CDATA[web designer veneto]]></category>
		<category><![CDATA[web designer venezia]]></category>
		<category><![CDATA[web developer veneto]]></category>

		<guid isPermaLink="false">http://www.claudiocugia.com/web_design/?p=54</guid>
		<description><![CDATA[Questo post rappresenta un tentativo di posizionare il mio blog  tra i primi dieci risultati della serp per le keyword web designer Veneto, web designer Treviso, web designer Padova e web designer Venezia in particolare con una sola pagina ottimizzata &#8230; <a href="http://www.claudiocugia.com/web_design/web-designer-venezia/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Questo post rappresenta un tentativo di posizionare il mio blog  tra i primi dieci risultati della <a title="link esterno - cos'è una serp?" href="http://it.wikipedia.org/wiki/SERP" target="_self">serp</a> per le keyword <strong>web designer Veneto</strong>, <strong>web designer Treviso</strong>, <strong>web designer Padova</strong> e <strong>web designer Venezia</strong> in particolare con una sola pagina ottimizzata per i motori di ricerca e in particolare <a title="link esterno a google" href="http://www.google.it/" target="_self">google</a>.<br />
<span id="more-54"></span><br />
Attualmente la serp per la ricerca di<a title="link esterno ai risultati della serp" href="http://www.google.it/search?hl=it&#038;q=web+designer+venezia&#038;btnG=Cerca+con+Google&#038;meta=&#038;aq=f&#038;oq="> web designer Venezia</a> restituisce 523.000 risultati; quella relativa alla ricerca di <a href="http://www.google.it/search?hl=it&#038;q=web+designer+veneto&#038;btnG=Cerca&#038;meta=">web designer Veneto</a> 521.000; <a href="http://www.google.it/search?hl=it&#038;q=web+designer+treviso&#038;btnG=Cerca+con+Google&#038;meta=&#038;aq=f&#038;oq=">web designer Treviso</a> 393.000; <a href="http://www.google.it/search?hl=it&#038;q=web+designer+padova&#038;btnG=Cerca&#038;meta=">web designer Padova</a> 393.000;  è interessante come ci siano tanti web designer in Veneto e nella provincia di Venezia ma anche tantissime webagency che operano nel territorio veneziano e in Veneto nelle province di Padova, Treviso, Vicenza e Verona.</p>
<h2 class="wdv">Internet e il ruolo del web designer.</h2>
<p>Il web designer senior ha una notevole esperienza nel settore dell’IT e conoscenze approfondite nello sviluppo di <strong>siti web</strong> con particolare attenzione agli standard web proposti dal <a title="link esterno al sito del W3C" href="http://www.w3.org/" target="_self">W3C</a>, xhtml e css e all&#8217;usabilità; sviluppa soluzioni tableless e pagine ottimizzate sia per i motori di ricerca che per le diverse piattaforme (mac/pc e relativi browser- Safari, IE6, IE7, IE8, Firefox).</p>
<h3 class="wdv">Competenze acquisite negli anni come  web designer.</h3>
<p>Design di <strong>siti web</strong> in Xhtml/Css e in Flash, banner (gif e flash), newsletter, temi per WordPress e Myspace, ottimizzazione per i motori di ricerca, produzione di filmati flash, musica e video.</p>
<h4 class="wdv">Di che cosa si occupa in generale il  web designer e cos&#8217;è il web design?</h4>
<p>Il termine <strong>webdesign</strong>, di derivazione anglosassone, sta ad indicare tutto l&#8217;insieme di attività che confluiscono nella progettazione grafica di un sito internet; il <strong>webdesigner</strong> di conseguenza deve possedere svariate competenze tecniche che gli permettano di creare un sito internet secondo alti standard qualitativi.<br />
In particolare il <strong>web designer</strong>:</p>
<ol>
<li>deve essere in possesso di buone doti di comunicazione che confluiscono poi alla finalizzazione del design della pagina web;</li>
<li>deve avere spiccate doti di creatività;</li>
<li>deve conoscere i principi fondamentali dell&#8217;utilizzo del colore, del contrasto e della disposizione degli elementi all&#8217;interno di una pagina web;</li>
<li>deve conoscere i principi fondamentali dell&#8217;usabilità e dell&#8217;accesibilità di un sito;</li>
<li>deve conoscere i linguaggi di markup più diffusi nel web (html, xhtml);</li>
<li>deve saper strutturare i siti mantenendo il più possibile separata  la struttura dallo stile e dunque far uso dei fogli di stile (css);</li>
<li>deve far in modo che le pagine web da lui prodotte risultino valide e in linea con quanto riportato dalle direttive del <a title="link esterno al sito del W3C" href="http://www.w3.org/" target="_self">W3C</a></li>
<li>deve assicurarsi che la pagina risulti compatibile con i diversi sistemi operativi e i diversi browser (Internet Explorer 8, Internet Explorer 7, Internet Explorer 6, Firefox, Safari);</li>
<li>deve mantenersi costantemente aggiornato.</li>
</ol>
<h5 class="wdv">Quali sono gli strumenti che utilizza il web designer per progettare pagine web?</h5>
<p>Per quanto riguarda la progettazione grafica di un <strong>sito internet</strong>, è indispensabile la conoscenza di un programma di grafica e/o fotoritocco come ad esempio Photoshop. Valide alternative sono Fireworks o The Gimp.<br />
Dal punto di vista dell&#8217;impaginazione invece,  un buon web designer deve saper scrivere il codice senza l&#8217;ausilio di editor <a title="wikipedia - WYSIWYG" href="http://it.wikipedia.org/wiki/WYSIWYG">WYSIWYG</a> &#8211; anche il semplice Blocconote di Microsoft potrebbe andar bene. Almeno all&#8217;inizio è fondamentale capire come funziona il markup html e come deve essere impaginato un sito con i css.</p>
<h5 class="wdv">Skill aggiuntive per web designer</h5>
<p>Ulteriore plus che va ad arricchire le skill del web designer è sicuramente l&#8217;utilizzo di Flash e del relativo linguaggio di programmazione noto come Actionscript e giunto ormai alla terza versione. </p>
<p>Flash (software distribuito dalla Adobe) permette di creare animazioni complesse e multimediali ed rappresenta ormai uno standard per la creazione di contenuti animati ed interattivi.</p>
<h5 class="wdv">Risorse per web designer</h5>
<p>Principali siti di riferimento per l&#8217;aggiornamento del <strong>web designer</strong>:</p>
<ul>
<li><a href="http://cssmania.com/" title="cssmania.com">cssmania.com</a> &#8211; per quanto riguarda gli ultimi trend del web design;</li>
<li><a href="http://www.smashingmagazine.com/" title="smashingmagazine.com">smashingmagazine.com</a> &#8211; tutorial e articoli sul mondo del web design;</li>
<li><a href="http://googlewebmastercentral.blogspot.com/" title="googlewebmastercentral.com">googlewebmastercentral.com</a> &#8211; articoli e tutorial sul più famoso motore di ricerca: <a href="http://www.google.it/" title="Google">Google</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.claudiocugia.com/web_design/web-designer-venezia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

