<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - User Favorites: dnelsonuf</title>
		<link><a href='http://www.kriesi.at/support/profile/dnelsonuf'>dnelsonuf</a></link>
		<description>Support Forum - User Favorites: dnelsonuf</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 06:35:44 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73772</link>
			<pubDate>Fri, 31 Aug 2012 08:23:16 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">73772@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dnelsonuf,&#60;/p&#62;
&#60;p&#62;You forgot to add a semi-colon(;) after the color: #fff. Try to add the semi-colon, and it should work. If not, try to add the !important. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dnelsonuf on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73712</link>
			<pubDate>Thu, 30 Aug 2012 20:53:25 +0000</pubDate>
			<dc:creator>dnelsonuf</dc:creator>
			<guid isPermaLink="false">73712@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any idea on how to fix this? as you can see it still isn't working the way it should on that page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dnelsonuf on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73480</link>
			<pubDate>Wed, 29 Aug 2012 14:37:27 +0000</pubDate>
			<dc:creator>dnelsonuf</dc:creator>
			<guid isPermaLink="false">73480@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have tried that in the quick CSS and it does not work, this is what I put in there below the button style: &#60;/p&#62;
&#60;p&#62;.avia-button.register:hover{&#60;br /&#62;
        color: #fff&#60;br /&#62;
	background: #f47c20;&#60;br /&#62;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));&#60;br /&#62;
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);&#60;br /&#62;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;On hover the font changes to gray and not white like it is specified in the above css?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73470</link>
			<pubDate>Wed, 29 Aug 2012 13:46:08 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">73470@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Just add a hover style on this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.avia-button.register:hover  {

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dnelsonuf on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73466</link>
			<pubDate>Wed, 29 Aug 2012 13:37:02 +0000</pubDate>
			<dc:creator>dnelsonuf</dc:creator>
			<guid isPermaLink="false">73466@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you, that worked!  One last question how would I apply a hover and active state to that button?  The first part of css works great its just the hover and active states that don't seem to be working correctly now:&#60;/p&#62;
&#60;p&#62;.avia-button.register {&#60;br /&#62;
	color: #fef4e9;&#60;br /&#62;
	border: solid 1px #da7c0c;&#60;br /&#62;
	background: #f78d1d;&#60;br /&#62;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));&#60;br /&#62;
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);&#60;br /&#62;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');&#60;br /&#62;
}&#60;br /&#62;
.avia-button.register , .avia-button.register:hover {&#60;br /&#62;
	background: #f47c20;&#60;br /&#62;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));&#60;br /&#62;
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);&#60;br /&#62;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');&#60;br /&#62;
}&#60;br /&#62;
.avia-button.register:active {&#60;br /&#62;
	color: #fcd3a5;&#60;br /&#62;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));&#60;br /&#62;
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);&#60;br /&#62;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Thanks for all the help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73394</link>
			<pubDate>Wed, 29 Aug 2012 02:48:49 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">73394@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dnelsonuf,&#60;/p&#62;
&#60;p&#62;Is the register button you want to change? You can use this selector:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.avia-button.register {

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dnelsonuf on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73340</link>
			<pubDate>Tue, 28 Aug 2012 21:27:13 +0000</pubDate>
			<dc:creator>dnelsonuf</dc:creator>
			<guid isPermaLink="false">73340@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;This still has made no changes to my register button, here is the page: &#60;a href=&#34;http://www.staging-sealtrainingadventures.com/programs/seal-adventure-challenge/&#34; rel=&#34;nofollow&#34;&#62;http://www.staging-sealtrainingadventures.com/programs/seal-adventure-challenge/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I tried both ways once by entering it in the custom.css and then I tried it in the Quick CSS as well.  Neither way worked the button color did not change even when I tried simply entering a color: for the css instead of all the stuff above?&#60;/p&#62;
&#60;p&#62;What is going on it looks like the themes styles are overriding whatever I put in there?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73190</link>
			<pubDate>Tue, 28 Aug 2012 06:44:17 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">73190@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dnelsonuf,&#60;/p&#62;
&#60;p&#62;Go to the Content Editor(this is where you place the content of your page or post), you will see the shortcode button, after you have generated the short code, the button code will look something like this:&#60;br /&#62;
&#60;code&#62;[button link=&#38;quot;http://kriesi.at&#38;quot;]Purchase[/button]&#60;/code&#62;&#60;br /&#62;
just add a class, let's name it my_special_button, the new code should look something like this:&#60;br /&#62;
&#60;code&#62;[button link=&#38;quot;http://kriesi.at&#38;quot; class=&#38;quot;my_special_button&#38;quot;]Purchase[/button]&#60;/code&#62;&#60;br /&#62;
Then go to: wp-content/themes/choices/css/custom.css or you can just go to Quick CSS and add the styling to your button, just integrate your code above, it should look something like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.my_special_button {
   color: #000;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just replace the attributes and you can replace the name of the class. Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dnelsonuf on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-73134</link>
			<pubDate>Tue, 28 Aug 2012 01:47:33 +0000</pubDate>
			<dc:creator>dnelsonuf</dc:creator>
			<guid isPermaLink="false">73134@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry I am a bit novice at this could you explain a bit more, possibly provide an example?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-72806</link>
			<pubDate>Sat, 25 Aug 2012 04:47:14 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">72806@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;On the shortcode button, add a special class on it. Then on your custom.css, add the style that you wanted.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dnelsonuf on "How to Change a Button Styles"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-a-button-styles#post-72735</link>
			<pubDate>Fri, 24 Aug 2012 19:03:30 +0000</pubDate>
			<dc:creator>dnelsonuf</dc:creator>
			<guid isPermaLink="false">72735@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have been trying to change the css to create a new button or change the orange button style all together.  Ideally I would like this style of button for the orange button:&#60;/p&#62;
&#60;p&#62;button.css3button {&#60;br /&#62;
	font-family: Arial, Helvetica, sans-serif;&#60;br /&#62;
	font-size: 14px;&#60;br /&#62;
	color: #ffffff;&#60;br /&#62;
	padding: 10px 20px;&#60;br /&#62;
	background: -moz-linear-gradient(&#60;br /&#62;
		top,&#60;br /&#62;
		#ff8a1d 0%,&#60;br /&#62;
		#ff8001);&#60;br /&#62;
	background: -webkit-gradient(&#60;br /&#62;
		linear, left top, left bottom,&#60;br /&#62;
		from(#ff8a1d),&#60;br /&#62;
		to(#ff8001));&#60;br /&#62;
	-moz-border-radius: 3px;&#60;br /&#62;
	-webkit-border-radius: 3px;&#60;br /&#62;
	border-radius: 3px;&#60;br /&#62;
	border: 1px solid #dd6b01;&#60;br /&#62;
	-moz-box-shadow:&#60;br /&#62;
		0px 1px 3px rgba(000,000,000,0.5),&#60;br /&#62;
		inset 0px 0px 2px rgba(255,255,255,0.7);&#60;br /&#62;
	-webkit-box-shadow:&#60;br /&#62;
		0px 1px 3px rgba(000,000,000,0.5),&#60;br /&#62;
		inset 0px 0px 2px rgba(255,255,255,0.7);&#60;br /&#62;
	box-shadow:&#60;br /&#62;
		0px 1px 3px rgba(000,000,000,0.5),&#60;br /&#62;
		inset 0px 0px 2px rgba(255,255,255,0.7);&#60;br /&#62;
	text-shadow:&#60;br /&#62;
		0px -1px 0px rgba(000,000,000,0.2),&#60;br /&#62;
		0px 1px 0px rgba(255,255,255,0.3);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Where would I enter this css, or how can I edit buttons for the Choices theme.  I tried entering the specific hex color in the buttons shortcode menu when asked for background color but that has no change on the button at all and it defaults to either gray or the standard theme color button when I make changes like that.  Please let me know as I would like to have some custom buttons.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Doug
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Deleting dummy sidebar items"</title>
			<link>http://www.kriesi.at/support/topic/deleting-dummy-sidebar-items#post-71993</link>
			<pubDate>Tue, 21 Aug 2012 01:30:11 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">71993@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dnelsonuf,&#60;/p&#62;
&#60;p&#62;I just took a look at the page but it doesn't appear to have a sidebar. Have you changed your settings and what you are trying to achieve?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dnelsonuf on "Deleting dummy sidebar items"</title>
			<link>http://www.kriesi.at/support/topic/deleting-dummy-sidebar-items#post-71978</link>
			<pubDate>Tue, 21 Aug 2012 00:08:03 +0000</pubDate>
			<dc:creator>dnelsonuf</dc:creator>
			<guid isPermaLink="false">71978@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Guys,&#60;/p&#62;
&#60;p&#62;I am trying to remove the side bar items on this page: &#60;a href=&#34;http://www.staging-sealtrainingadventures.com/programs/&#34; rel=&#34;nofollow&#34;&#62;http://www.staging-sealtrainingadventures.com/programs/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;As you can see lower I created a custom menu and want that to be the only thing in the side bar on this page.  How do I go about doing this?  I tried setting up a page in theme builder but it was all messed up.  If I need to do it in the theme page builder please let me know the exact options to select so everything displays like it does now minus that dummy nav.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
