<rss version="2.0">
		<channel>
			<title>SkillShare Forum - CSS Beauty - multiple &amp;#039;a:hover&amp;#039; styles</title>
			<lastBuildDate>Sat, 25 May 2013 06:31:12 -0400</lastBuildDate>
			<link>http://cssbeauty.com/skillshare/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.1.9</generator>
			<item>
		<title>multiple &#039;a:hover&#039; styles</title>
		<link>http://cssbeauty.com/skillshare/discussion/443/?Focus=2952#Comment_2952</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/443/?Focus=2952#Comment_2952</guid>
		<pubDate>Fri, 31 Mar 2006 10:42:31 -0500</pubDate>
		<author>spoo</author>
		<description>
			<![CDATA[It's spoo again.  This site rocks to every extent, I'm getting so much help.  Thanks. <br /><br />I have another question.  I'm noticing on some sites, they have two hover types for different links.  For example, a navigation bar has one hover style, and content has another hover style, and footers have their own hover style.<br /><br />Previously, I had been using a:hover for my styles, but would often require me using bad colors just to get the links to work in both header, body, and footer so the viewer could see the links.   What would be the attribute(s) to create multiple hover formats?]]>
		</description>
	</item>
	<item>
		<title>multiple &#039;a:hover&#039; styles</title>
		<link>http://cssbeauty.com/skillshare/discussion/443/?Focus=2953#Comment_2953</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/443/?Focus=2953#Comment_2953</guid>
		<pubDate>Fri, 31 Mar 2006 10:46:10 -0500</pubDate>
		<author>nifkin</author>
		<description>
			<![CDATA[just target different areas of the page using descendant selectors.<br /><br /><tt >/* this styles all links by default */<br />a:link,a:visited,a:focus,a:hover,a:active { color:#f0c;}<br /><br />/* this only styles links in a div with an id of navbar */<br />div#navbar a:link,div#navbar a:visited,div#navbar a:focus,div#navbar a:hover,div#navbar a:active { color:#cf0; }<br /><br />/* only styles links in an LI element */<br />li a:link,li a:visited,li a:focus,li a:hover,li a:active { color:#c00; }</tt>]]>
		</description>
	</item>
	<item>
		<title>multiple &#039;a:hover&#039; styles</title>
		<link>http://cssbeauty.com/skillshare/discussion/443/?Focus=2954#Comment_2954</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/443/?Focus=2954#Comment_2954</guid>
		<pubDate>Fri, 31 Mar 2006 10:52:04 -0500</pubDate>
		<author>spoo</author>
		<description>
			<![CDATA[awesome, that did the trick. Next I need to learn to abbreviate my css :)  Thanks nifkin.]]>
		</description>
	</item>
	<item>
		<title>multiple &#039;a:hover&#039; styles</title>
		<link>http://cssbeauty.com/skillshare/discussion/443/?Focus=2955#Comment_2955</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/443/?Focus=2955#Comment_2955</guid>
		<pubDate>Fri, 31 Mar 2006 10:55:31 -0500</pubDate>
		<author>adjustafresh</author>
		<description>
			<![CDATA[spoo,<br /><br />Nesting your CSS like Nifkin illustrated is important not only for hover styles, but for your code in general.  If you're not nesting the styles in your CSS file you're asking for cascade trouble.]]>
		</description>
	</item>
	<item>
		<title>multiple &#039;a:hover&#039; styles</title>
		<link>http://cssbeauty.com/skillshare/discussion/443/?Focus=2957#Comment_2957</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/443/?Focus=2957#Comment_2957</guid>
		<pubDate>Fri, 31 Mar 2006 11:14:17 -0500</pubDate>
		<author>spoo</author>
		<description>
			<![CDATA[<a href="http://spoo.tysonforgod.info/style.css" target="_blank" rel="nofollow">http://spoo.tysonforgod.info/style.css</a><br /><br />that's my stylesheet at the moment.   Any suggestions how I can improve it?]]>
		</description>
	</item>
	<item>
		<title>multiple &#039;a:hover&#039; styles</title>
		<link>http://cssbeauty.com/skillshare/discussion/443/?Focus=2961#Comment_2961</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/443/?Focus=2961#Comment_2961</guid>
		<pubDate>Fri, 31 Mar 2006 16:23:04 -0500</pubDate>
		<author>benjitastic</author>
		<description>
			<![CDATA[you could condense it slightly by using shorthand for your borders, for example:<br /><br />Instead of:<br /><div style="border-left: 5px solid #834300; background: #fef2c9; padding-left: 5px;" ><br />	border-bottom-width: thin;<br />	border-bottom-style: solid;<br />	border-bottom-color: #CCCCCC;<br /></div><br />You could do:<br /><div style="border-left: 5px solid #834300; background: #fef2c9; padding-left: 5px;" ><br />	border-bottom: 1px solid #CCC;<br /></div>]]>
		</description>
	</item>
	
		</channel>
	</rss>