<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Tycoon Talk - CSS Forum</title>
		<link>http://www.webmaster-talk.com//</link>
		<description>This forum is for discussion and help with Cascading Style Sheets, including cross browser issues and debugging design issues.</description>
		<language>en</language>
		<lastBuildDate>Thu, 20 Jun 2013 06:24:50 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://img.tycoontalk.freelancer.com/bluesky/vb_img/misc/rss.jpg</url>
			<title>Tycoon Talk - CSS Forum</title>
			<link>http://www.webmaster-talk.com//</link>
		</image>
		<item>
			<title>Css3 different keyframes for different states</title>
			<link>http://www.webmaster-talk.com//showthread.php?t=239591&amp;goto=newpost</link>
			<pubDate>Wed, 19 Jun 2013 00:50:12 GMT</pubDate>
			<description><![CDATA[Hey folks! I've got some trouble with this. My first animation works fine when the page loads, but i want to trigger another animation when you hover...]]></description>
			<content:encoded><![CDATA[<div>Hey folks! I've got some trouble with this. My first animation works fine when the page loads, but i want to trigger another animation when you hover the figure element, if you do this, the first animation repeats, but apparently,if you put the mouse over the blue box and force it to go to the original position, then my second animation works :/<br />
If you're want to see the working example visit this link : <br />
jsfiddle(dot)net/Kd6PX/<br />
I appreciate any aid :D<br />
Here is my code :<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;body&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;wrapper&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;animation-wrapper&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &lt;/body&gt;</code><hr />
</div><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#wrapper{<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin: auto;<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 960px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; height: 500px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; background-color: black;<br />
}<br />
<br />
&nbsp;#wrapper #animation-wrapper{<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 50px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; height: 50px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; background-color: blue;<br />
&nbsp; &nbsp; &nbsp; &nbsp; position: relative;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-animation-name:move;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-animation-duration:4s;<br />
&nbsp; &nbsp; &nbsp; &nbsp; /*-webkit-animation-direction:alternate;*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; /*-webkit-animation-iteration-count:infinite;*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; /*-webkit-animation-delay:2s;*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-animation-fill-mode:forwards;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-animation-name:move;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-animation-duration:4s;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-animation-fill-mode:forwards;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
}&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp;#animation-wrapper{<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-transition-duration:1s;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-transition-duration:1s;<br />
}<br />
#wrapper #animation-wrapper:hover{<br />
&nbsp; &nbsp; &nbsp; &nbsp; /*-webkit-transition:2s all;*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; /*top: 100px;*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; /*-webkit-transform:translateX(100px);<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-transform:translateX(100px);*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-animation:left 2s;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-animation:left 2s;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
}<br />
<br />
@-webkit-keyframes move{<br />
&nbsp; &nbsp; &nbsp; &nbsp; from { top: 0px;&nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; to { top: 100px; }<br />
}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; @-webkit-keyframes left{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; from { left: 0px;/*-webkit-transition-duration:0s;*/ }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; to { left: 100px; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
@-moz-keyframes move{<br />
&nbsp; &nbsp; &nbsp; &nbsp; from { top: 0px; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; to { top: 100px; }<br />
}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; @-moz-keyframes left{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; from { left: 0px;}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; to { left: 100px; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.webmaster-talk.com//forumdisplay.php?f=110">CSS Forum</category>
			<dc:creator>rentless</dc:creator>
			<guid isPermaLink="true">http://www.webmaster-talk.com//showthread.php?t=239591</guid>
		</item>
		<item>
			<title>In mobile Website, Sub menu not working?</title>
			<link>http://www.webmaster-talk.com//showthread.php?t=239559&amp;goto=newpost</link>
			<pubDate>Fri, 14 Jun 2013 10:08:22 GMT</pubDate>
			<description>I have installed wp responsive theme for my sites, url sdreamworks.in and insightab.com in mobile view, sub menu not working? what is the exact...</description>
			<content:encoded><![CDATA[<div>I have installed wp responsive theme for my sites, url sdreamworks.in and insightab.com in mobile view, sub menu not working? what is the exact problem for in this case..</div>

]]></content:encoded>
			<category domain="http://www.webmaster-talk.com//forumdisplay.php?f=110">CSS Forum</category>
			<dc:creator>vsrajan</dc:creator>
			<guid isPermaLink="true">http://www.webmaster-talk.com//showthread.php?t=239559</guid>
		</item>
		<item>
			<title>Issue with float on certain Wordpress Pages</title>
			<link>http://www.webmaster-talk.com//showthread.php?t=239554&amp;goto=newpost</link>
			<pubDate>Thu, 13 Jun 2013 23:07:24 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm having an issue with two types of pages on our blog.  The styling on the "author archives" (ex:...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm having an issue with two types of pages on our blog.  The styling on the &quot;author archives&quot; (ex: <a href="http://www.starbuckrealtygroup.com/blog/author/jenstarbuck/" target="_blank">http://www.starbuckrealtygroup.com/b...r/jenstarbuck/</a>) and &quot;search results&quot; (example: <a href="http://www.starbuckrealtygroup.com/blog/?s=b-cycle&amp;submit=Search" target="_blank">http://www.starbuckrealtygroup.com/b...&amp;submit=Search</a>) pages always put the #secondary div outside of the #primary, forcing it to the bottom of the page.  On all other pages, #secondary is inside the #primary div and renders correctly (example: <a href="http://www.starbuckrealtygroup.com/blog/category/buyers/" target="_blank">http://www.starbuckrealtygroup.com/b...tegory/buyers/</a>)<br />
<br />
Advice?<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://www.webmaster-talk.com//forumdisplay.php?f=110">CSS Forum</category>
			<dc:creator>jstarbuck</dc:creator>
			<guid isPermaLink="true">http://www.webmaster-talk.com//showthread.php?t=239554</guid>
		</item>
		<item>
			<title>Make wordpress header responsive.</title>
			<link>http://www.webmaster-talk.com//showthread.php?t=239547&amp;goto=newpost</link>
			<pubDate>Thu, 13 Jun 2013 05:07:25 GMT</pubDate>
			<description>Hello, 
 
I need some basic help, All I am trying to do is make my header on this website responsive. When you look at the website on a laptop it...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I need some basic help, All I am trying to do is make my header on this website responsive. When you look at the website on a laptop it looks centered but, when you view it on a tablet or smartphone its still big and doesn't shrink down to size. The rest of the theme is responsive and adjusts to the device it's viewed on. So how can I make the top header become responsive as well.<br />
<br />
Website http:// kataztrofeemusic. com/<br />
<br />
Thank You</div>

]]></content:encoded>
			<category domain="http://www.webmaster-talk.com//forumdisplay.php?f=110">CSS Forum</category>
			<dc:creator>outstandn</dc:creator>
			<guid isPermaLink="true">http://www.webmaster-talk.com//showthread.php?t=239547</guid>
		</item>
		<item>
			<title>Z-Index Issue with Nivo Gallery Slides</title>
			<link>http://www.webmaster-talk.com//showthread.php?t=239499&amp;goto=newpost</link>
			<pubDate>Tue, 04 Jun 2013 21:25:10 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm working on the slideshow on http://starbuckrealtygroup.com/index.php.  The issue is that when I go to fullscreen mode, there are some page...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm working on the slideshow on <a href="http://starbuckrealtygroup.com/index.php" target="_blank">http://starbuckrealtygroup.com/index.php</a>.  The issue is that when I go to fullscreen mode, there are some page elements that render ABOVE the slideshow.  (Mainly .widget-area)  I have tried applying a lower z-index to this class, but it doesn't hide it below the slideshow in fullscreen.  Advice?<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://www.webmaster-talk.com//forumdisplay.php?f=110">CSS Forum</category>
			<dc:creator>jstarbuck</dc:creator>
			<guid isPermaLink="true">http://www.webmaster-talk.com//showthread.php?t=239499</guid>
		</item>
	</channel>
</rss>
