<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>CSS Mania</title>
	<atom:link href="http://cssm.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cssm.wordpress.com</link>
	<description>A CSS Tutorials blog</description>
	<lastBuildDate>Thu, 22 Dec 2011 10:33:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cssm.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>CSS Mania</title>
		<link>http://cssm.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cssm.wordpress.com/osd.xml" title="CSS Mania" />
	<atom:link rel='hub' href='http://cssm.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Highlight images on mouse over using Opacity</title>
		<link>http://cssm.wordpress.com/2006/10/19/highlight-images-on-mouse-over-using-opacity/</link>
		<comments>http://cssm.wordpress.com/2006/10/19/highlight-images-on-mouse-over-using-opacity/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 16:09:22 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/10/19/highlight-images-on-mouse-over-using-opacity/</guid>
		<description><![CDATA[Highlight images on mouse over. Using opacity to control transparency of images<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=17&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes you might want to blur (reduce the opacity) an image on default and bring it back to being opaque on mouse over. You can use this effect to keep the users focus on your content rather than those links bar on the top of the page: for e.g. you can make your full menu bar with links less opaque or more transparent by default and highlight them on mouse over.<br />
So how do we acheive this? Very simple the answer to this is to use the &#8220;<strong>opacity</strong>&#8221; property.</p>
<p>Opacity property can have the following values: <u><strong>0.0 to 1.0</strong></u> any values outside this range will be clamped into this.</p>
<p><em>Opacity: 1.0</em> means that the element is 100% Opaque or in other words 0% transparent.<br />
<em>Opacity: 0.0</em> means that the element is 100% transparent or in other words 0% opaque.</p>
<p>according to W3C this is how opacity should be defined <strong><em>opacity: 0.5</em></strong></p>
<p>But Mozilla and IE had their own ways of implementing this</p>
<p>IE wants this for opacity to work <strong><em>filter:alpha(opacity=50)</em></strong></p>
<p>and Mozilla wanted this <em><strong>-moz-opacity: 0.5</strong></em></p>
<p>but newer versions of Mozilla doesn&#8217;t require this (I haven&#8217;t tested this but you can check it yourself by applying this style)</p>
<p><u><strong><a href="http://www.praveenc.com/blog/wp-content/uploads/2006/10/opacity.css" id="p62">opacity.css</a></strong></u></p>
<p>body{<br />
font-family: &#8220;Trebuchet MS&#8221;,Trebuchet,Verdana,Sans-Serif;<br />
background-color: #FFF;<br />
color: #eee;<br />
}</p>
<p>a.myopacity img{<br />
border: none;<br />
padding: 3px;<br />
filter:alpha(opacity=45);<br />
-moz-opacity: 0.45;<br />
opacity: 0.45;<br />
}</p>
<p>a.myopacity:hover img{<br />
border: 1px dotted #000;<br />
filter:alpha(opacity=100);<br />
-moz-opacity: 1.0;<br />
opacity: 1.0;<br />
}<a href="http://www.praveenc.com/blog/wp-content/uploads/2006/10/opacity.css" id="p62"><br />
<code></code></a></p>
<p><strong><a href="http://www.praveenc.com/blog/opacity.html" id="p63" title="opacity.html"> </a></strong><strong><em><u><strong>The result</strong></u></em></strong></p>
<p><strong><a href="http://www.praveenc.com/blog/opacity.html" id="p63" title="opacity.html"> </a></strong><strong><a href="http://www.praveenc.com/blog/opacity.html" id="p63" title="opacity.html"><strong><br />
</strong></a></strong><strong><img src="http://www.praveenc.com/blog/wp-content/uploads/2006/10/opacity.png" alt="Highlighting images on mouse-over" /></strong></p>
<p>or you can see this <a href="http://www.praveenc.com/gallery.html" target="_blank" title="Praveen C">here</a> in action</p>
<p><a href="http://www.praveenc.com/gallery.html" target="_blank">http://www.praveenc.com/gallery.html</a></p>
<p><strong><a href="http://www.praveenc.com/blog/opacity.html" id="p63" title="opacity.html"><strong> </strong></a></strong>and by the way I forgot to mention that opacity can be applied to all elements.</p>
<p>Means you can apply this to text blocks, div&#8217;s, images, hyperlinks..or whatever you like. So go ahead and freak out.</p>
<p>Good day people!!!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=17&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/10/19/highlight-images-on-mouse-over-using-opacity/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>

		<media:content url="http://www.praveenc.com/blog/wp-content/uploads/2006/10/opacity.png" medium="image">
			<media:title type="html">Highlighting images on mouse-over</media:title>
		</media:content>
	</item>
		<item>
		<title>Styling tables using CSS</title>
		<link>http://cssm.wordpress.com/2006/10/06/styling-tables-using-css/</link>
		<comments>http://cssm.wordpress.com/2006/10/06/styling-tables-using-css/#comments</comments>
		<pubDate>Fri, 06 Oct 2006 09:39:24 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/10/06/styling-tables-using-css/</guid>
		<description><![CDATA[Styling tables using css. Changing rows colors on mouse over.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=14&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It can be difficult to ensure that you remain on a particular row as your eyes work across a large data table. Displaying table rows in alternating colors is a common way to help users identify which row they’re focused on. Whether you’re adding rows by hand, or you’re displaying the data from a database, you can use CSS classes to create this effect.</p>
<p>However, there are two ways of implementing this:</p>
<p>1. Display alternate rows by default with an alternating color OR</p>
<p>2. Change row colors dynamically on mouse-over or on hovering the table rows.</p>
<p>I prefer the 2nd option as it is easier to maintain the color scheme in blend with the color scheme of the whole page.</p>
<p>This is how we will implement this</p>
<p><u>Step 1: Define styles for the table</u></p>
<p>I shall declare a class called <strong><em>mytable</em></strong> and shall define a style for my table in general<br />
<em>.mytable{<br />
font: 0.8em Verdana, Geneva, Arial, Helvetica, sans-serif;<br />
border: 1px solid #D6DDE6;<br />
border-collapse: collapse;<br />
width: 50%;<br />
} </em></p>
<p><u>Step 2: Define styles for the <strong>header</strong> row</u></p>
<p><em>.mytable th {<br />
border: 1px solid #828282;<br />
background-color: #515151;<br />
color: #66FF33;<br />
font-weight: bold;<br />
text-align: left;<br />
padding: 4px;<br />
} </em></p>
<p><u>Step 3: Define styles for the <strong>table cells</strong> </u></p>
<p>by default all cells will be applied with a dotted border and will be padded with 4px of space</p>
<p><em>.mytable td{<br />
border: 1px dotted #aaa;<br />
padding: 4px;<br />
}</em></p>
<p>for some special cells I would like to change the text color to something bright so that it stands out, for which I define another style</p>
<p><em>.mytable td.alt{<br />
background-color: transparent;<br />
color: #00FFCC;<br />
} </em></p>
<p><u>Step 4: Define styles while a mouse is hovered over a row</u></p>
<p><em>.mytable tr:hover{<br />
background-color:#aaa;<br />
color: #fff;<br />
}<br />
</em></p>
<p>and presto we have a style definitions for a table that changes color on mouse hover and the result looks something like this</p>
<p><img src="http://cssm.files.wordpress.com/2006/10/tablehover.PNG?w=640" alt="Styling tables using CSS" /></p>
<p>you can copy all the above defined styles into a CSS file and link the stylesheet to your HTML document to acheive at the above result.</p>
<p>Hope this was helpful</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=14&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/10/06/styling-tables-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>

		<media:content url="http://cssm.files.wordpress.com/2006/10/tablehover.PNG" medium="image">
			<media:title type="html">Styling tables using CSS</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS Links and resources</title>
		<link>http://cssm.wordpress.com/2006/10/06/css-links-and-resources/</link>
		<comments>http://cssm.wordpress.com/2006/10/06/css-links-and-resources/#comments</comments>
		<pubDate>Fri, 06 Oct 2006 03:46:33 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/10/06/css-links-and-resources/</guid>
		<description><![CDATA[useful CSS links and resources from the web<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=13&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I thought I would share with you guys some interesting links where you can witness web 2.0 in action.</p>
<p>CSS designs on display here: <a href="http://www.cssmania.com" target="_blank">http://www.cssmania.com</a>, <a href="http://www.cssbeauty.com" target="_blank">http://www.cssbeauty.com</a>, <a href="http://www.cssvault.com" target="_blank">http://www.cssvault.com</a>, <a href="http://www.webcreme.com" target="_blank">http://www.webcreme.com</a></p>
<p>You can read some how to&#8217;s and the latest happenings here.</p>
<p><a href="http://veerle.duoh.com/index.php" target="_blank">http://veerle.duoh.com/index.php</a>, <a href="http://www.24ways.org" target="_blank">http://www.24ways.org</a>, <a href="http://www.csszengarden.com" target="_blank">http://www.csszengarden.com</a></p>
<p>and you can catch some examples with source here</p>
<p><a href="http://www.cssplay.co.uk" target="_blank">http://www.cssplay.co.uk</a></p>
<p>good day guys!!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=13&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/10/06/css-links-and-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>
	</item>
		<item>
		<title>Validating your CSS</title>
		<link>http://cssm.wordpress.com/2006/10/02/validating-your-css/</link>
		<comments>http://cssm.wordpress.com/2006/10/02/validating-your-css/#comments</comments>
		<pubDate>Mon, 02 Oct 2006 05:38:56 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/10/02/validating-your-css/</guid>
		<description><![CDATA[Some Web designers regard a Web page that validates under both HTML and CSS guidelines as the Holy Grail. I prefer to think of validation as an extremely useful tool, but not a religion. CSS validation, however, is suited perfectly for debugging your code. CSS validators can catch those unclosed curly braces and other typos [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=11&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some Web designers regard a Web page that validates under both HTML and CSS guidelines as the Holy Grail. I prefer to think of validation as an extremely useful tool, but not a religion. CSS validation, however, is suited perfectly for debugging your code. CSS validators can catch those unclosed curly braces and other typos easily.</p>
<p>Numerous CSS validation services are available. I use the one from the W3C located at <a href="http://jigsaw.w3.org/css-validator/" title="CSS Validator" target="_blank">http://jigsaw.w3.org/css-validator/</a>.<br />
<img src="http://cssm.files.wordpress.com/2006/10/validate-css.GIF?w=640" alt="Validate CSS" /></p>
<p>you can also validate your HTML here: <a href="http://validator.w3.org/ " title="HTML Validator" target="_blank">http://validator.w3.org/ </a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=11&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/10/02/validating-your-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>

		<media:content url="http://cssm.files.wordpress.com/2006/10/validate-css.GIF" medium="image">
			<media:title type="html">Validate CSS</media:title>
		</media:content>
	</item>
		<item>
		<title>How do I make a submit button look like text?</title>
		<link>http://cssm.wordpress.com/2006/10/01/how-do-i-make-a-submit-button-look-like-text/</link>
		<comments>http://cssm.wordpress.com/2006/10/01/how-do-i-make-a-submit-button-look-like-text/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 13:06:24 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/10/01/how-do-i-make-a-submit-button-look-like-text/</guid>
		<description><![CDATA[When you design pages that look like wizards and when the information you are gathering flows over into multiple pages you might want to give your user a feel of filling a page in which case you would want to display your NEXT buttons as text. Actually it is very simple our task is now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=9&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you design pages that look like wizards and when the information you are gathering flows over into multiple pages you might want to give your user a feel of filling a page in which case you would want to display your NEXT buttons as text.</p>
<p>Actually it is very simple our task is now to style the button so that it looks like text here is how we define the style</p>
<p>.btn {  background-color: <em>transparent</em>; border: <em>0</em>; padding: <em>0</em>;}</p>
<p>now you can apply this style to the button you wish by calling the pseudo-class by name like</p>
<p>&lt;input type=&#8221;button&#8221; class=&#8221;btn&#8221; /&gt;</p>
<p><img src="http://cssm.files.wordpress.com/2006/10/text-button.JPG?w=640" alt="Button that looks like text" /></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=9&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/10/01/how-do-i-make-a-submit-button-look-like-text/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>

		<media:content url="http://cssm.files.wordpress.com/2006/10/text-button.JPG" medium="image">
			<media:title type="html">Button that looks like text</media:title>
		</media:content>
	</item>
		<item>
		<title>Styling Hyperlinks: Change colors on mouseover</title>
		<link>http://cssm.wordpress.com/2006/10/01/styling-hyperlinks-change-colors-on-mouseover/</link>
		<comments>http://cssm.wordpress.com/2006/10/01/styling-hyperlinks-change-colors-on-mouseover/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 05:29:31 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/10/01/styling-hyperlinks-change-colors-on-mouseover/</guid>
		<description><![CDATA[Styling hyperlinks could be used effectively to replace the old style navigation buttons.To create this effect we style the :hover and :active pseudo-classes of the anchor tag. Am gonna define style separatley one for the :link and :visited styles and other for :hover and :active Personally I like the hyperlinks to appear in a contrasting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=6&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Styling hyperlinks could be used effectively to replace the old style navigation buttons.To create this effect we style the <em>:hover</em> and <em>:active</em> pseudo-classes of the anchor tag. Am gonna define style separatley one for the <em>:link</em> and <em>:visited</em> styles and other for <em>:hover</em> and <em>:active</em></p>
<p>Personally I like the hyperlinks to appear in a contrasting color to the page background by default, with a dotted underline, and on hover I would like to change the text-color so that it appears highlighted.</p>
<p><em><u>CSS code:</u></em></p>
<p><em>body{<br />
background-color: #171717;<br />
}</em></p>
<p><em>a:link, a:visited{<br />
font-family: &#8220;Trebuchet MS&#8221;,Trebuchet,Verdana,Sans-Serif;<br />
text-decoration: none;<br />
border-bottom: 1px dotted #eee;<br />
background-color: transparent;<br />
color:#fff;<br />
}</em></p>
<p><em>a:hover, a:active{<br />
font-family: &#8220;Trebuchet MS&#8221;,Trebuchet,Verdana,Sans-Serif;<br />
text-decoration: none;<br />
border-bottom: 1px dotted #eee;<br />
background-color: transparent;<br />
color:#4eb5e1;<br />
}<br />
</em><br />
and the html looks like this</p>
<p><img src="http://cssm.files.wordpress.com/2006/10/stylinglinks.JPG?w=640" alt="styling hyperlinks" /></p>
<p>and on mouse over the links looks like this.</p>
<p><img src="http://cssm.files.wordpress.com/2006/10/stylinlinks-hover.JPG?w=640" alt="styling hyperlinks hover" /></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=6&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/10/01/styling-hyperlinks-change-colors-on-mouseover/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>

		<media:content url="http://cssm.files.wordpress.com/2006/10/stylinglinks.JPG" medium="image">
			<media:title type="html">styling hyperlinks</media:title>
		</media:content>

		<media:content url="http://cssm.files.wordpress.com/2006/10/stylinlinks-hover.JPG" medium="image">
			<media:title type="html">styling hyperlinks hover</media:title>
		</media:content>
	</item>
		<item>
		<title>How do I display a list horizontally?</title>
		<link>http://cssm.wordpress.com/2006/09/30/how-do-i-display-a-list-horizontally/</link>
		<comments>http://cssm.wordpress.com/2006/09/30/how-do-i-display-a-list-horizontally/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 15:51:02 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/09/30/how-do-i-display-a-list-horizontally/</guid>
		<description><![CDATA[you can use the display property set to inline on the list item. you can use the following line into your .css file to display list items horizontally ul li{ display: inline; }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=5&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>you can use the <em>display </em>property set to <em>inline</em> on the list item.</p>
<p>you can use the following line into your .css file to display list items horizontally</p>
<p>ul li{ display: <em>inline;</em> }</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=5&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/09/30/how-do-i-display-a-list-horizontally/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>
	</item>
		<item>
		<title>How do I use an Image for a list item?</title>
		<link>http://cssm.wordpress.com/2006/09/30/how-do-i-use-an-image-for-a-list-item/</link>
		<comments>http://cssm.wordpress.com/2006/09/30/how-do-i-use-an-image-for-a-list-item/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 15:45:21 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/09/30/how-do-i-use-an-image-for-a-list-item/</guid>
		<description><![CDATA[You can use the list-style-image property instead of list-style-type for your bullets.This property accepts a URL, which incorporates the path to your image file as a value. ul{ list-style-image: url(bullet.gif) }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=4&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can use the <em>list-style-image</em> property instead of <em>list-style-type</em> for your bullets.This property accepts a URL, which incorporates the path to your image file as a value.</p>
<p>ul{ list-style-image: url(bullet.gif) }</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=4&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/09/30/how-do-i-use-an-image-for-a-list-item/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>
	</item>
		<item>
		<title>How do I get rid of the large gap between h1 tag and the following paragraph</title>
		<link>http://cssm.wordpress.com/2006/09/30/how-do-i-get-rid-of-the-large-gap-between-tag-and-the-following-paragraph/</link>
		<comments>http://cssm.wordpress.com/2006/09/30/how-do-i-get-rid-of-the-large-gap-between-tag-and-the-following-paragraph/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 15:24:49 +0000</pubDate>
		<dc:creator>praveenc</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS2]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://cssm.wordpress.com/2006/09/30/how-do-i-get-rid-of-the-large-gap-between-tag-and-the-following-paragraph/</guid>
		<description><![CDATA[By default, browsers render a gap between heading and paragraph tags. This is produced by a default top and bottom margin that browsers apply to these tags. To remove all space between a heading and the paragraph that follows it, you must not only remove the bottom margin from the heading, but also the top [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=3&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By default, browsers render a gap between heading and paragraph tags. This is<br />
produced by a default top and bottom margin that browsers apply to these tags.<br />
To remove all space between a heading and the paragraph that follows it, you<br />
must not only remove the bottom margin from the heading, but also the top<br />
margin from the paragraph. But since it can be inconvenient to target the first<br />
paragraph following a heading with a CSS selector, it’s easier to simply assign a<br />
negative bottom margin to the heading. Margins can be set to negative values,<br />
though padding cannot.</p>
<p>h1 {<br />
font: 10px Georgia;<br />
margin-bottom: -10px;<br />
}</p>
<p>try this to get rid of the large gap</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/cssm.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/cssm.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cssm.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cssm.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cssm.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cssm.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cssm.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cssm.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cssm.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cssm.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cssm.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cssm.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cssm.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cssm.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cssm.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cssm.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cssm.wordpress.com&amp;blog=446301&amp;post=3&amp;subd=cssm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cssm.wordpress.com/2006/09/30/how-do-i-get-rid-of-the-large-gap-between-tag-and-the-following-paragraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/57ef384657726e8ccc7acfc6fe062642?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Deadmeat Martin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
