<?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 - Topic: Reducing Slideshow Size in Choices?</title>
		<link>http://www.kriesi.at/support/topic/reducing-slideshow-size-in-choices</link>
		<description>Support Forum - Topic: Reducing Slideshow Size in Choices?</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 22:26:49 +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/topic/reducing-slideshow-size-in-choices" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Reducing Slideshow Size in Choices?"</title>
			<link>http://www.kriesi.at/support/topic/reducing-slideshow-size-in-choices#post-67419</link>
			<pubDate>Tue, 24 Jul 2012 19:37:06 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">67419@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Bob,&#60;/p&#62;
&#60;p&#62;Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.page-id-395 .callout.hero-text .big_button {
background-color: #ccc000;
color: #fff;
border-color: #ccc000;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;When you have everything on the proper home page, you can use the following to restrict it to the home page since the above is targeted at that specific page id.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top.home .callout.hero-text .big_button {
background-color: #ccc000;
color: #fff;
border-color: #ccc000;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bobbeach on "Reducing Slideshow Size in Choices?"</title>
			<link>http://www.kriesi.at/support/topic/reducing-slideshow-size-in-choices#post-67144</link>
			<pubDate>Mon, 23 Jul 2012 08:02:42 +0000</pubDate>
			<dc:creator>bobbeach</dc:creator>
			<guid isPermaLink="false">67144@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the slider info. Link for the button is: &#60;a href=&#34;http://bed-and-breakfast-marketing.com/home&#34; rel=&#34;nofollow&#34;&#62;http://bed-and-breakfast-marketing.com/home&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Please bear in mind it's a work in progress - currently I'm showing the bog as the homepage while I build content.&#60;/p&#62;
&#60;p&#62;Bob
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Reducing Slideshow Size in Choices?"</title>
			<link>http://www.kriesi.at/support/topic/reducing-slideshow-size-in-choices#post-67122</link>
			<pubDate>Mon, 23 Jul 2012 06:50:21 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">67122@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, you can adjust the image/slideshow sizes in functions.php - search for following code and adjust the height parameter as required:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;widget&#38;#39;] 			 	= array(&#38;#39;width&#38;#39;=&#38;gt;36,  &#38;#39;height&#38;#39;=&#38;gt;36);						// small preview pics eg sidebar news
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;slider_thumb&#38;#39;] 		= array(&#38;#39;width&#38;#39;=&#38;gt;70,  &#38;#39;height&#38;#39;=&#38;gt;50);						// slideshow preview pics
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;fullsize&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;930, &#38;#39;height&#38;#39;=&#38;gt;930, &#38;#39;crop&#38;#39;=&#38;gt;false);		// big images for lightbox and portfolio single entries
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;featured&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;990, &#38;#39;height&#38;#39;=&#38;gt;400 );						// images for fullsize pages and fullsize slider
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;portfolio&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;495, &#38;#39;height&#38;#39;=&#38;gt;400 ,&#38;#39;copy&#38;#39;=&#38;gt;&#38;#39;greyscale&#38;#39;);	// images for portfolio entries (2,3 column)
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;portfolio_small&#38;#39;] 		= array(&#38;#39;width&#38;#39;=&#38;gt;241, &#38;#39;height&#38;#39;=&#38;gt;179 ,&#38;#39;copy&#38;#39;=&#38;gt;&#38;#39;greyscale&#38;#39;);	// images for portfolio 4 columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;logo&#38;#39;] 		 		= array(&#38;#39;width&#38;#39;=&#38;gt;446, &#38;#39;height&#38;#39;=&#38;gt;218 ,&#38;#39;copy&#38;#39;=&#38;gt;&#38;#39;greyscale&#38;#39;);	// images for dynamic logo/partner element

//dynamic columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;dynamic_1&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;446, &#38;#39;height&#38;#39;=&#38;gt;150);						// images for 2/4 (aka 1/2) dynamic portfolio columns when using 3 columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;dynamic_2&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;609, &#38;#39;height&#38;#39;=&#38;gt;208);						// images for 2/3 dynamic portfolio columns
$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;dynamic_3&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;688, &#38;#39;height&#38;#39;=&#38;gt;150);						// images for 3/4 dynamic portfolio columns&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Afterwards regenerate the images with: &#60;a href=&#34;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2) Can you post a link please. I need to investigate the button code with firebug.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bobbeach on "Reducing Slideshow Size in Choices?"</title>
			<link>http://www.kriesi.at/support/topic/reducing-slideshow-size-in-choices#post-66528</link>
			<pubDate>Thu, 19 Jul 2012 10:26:11 +0000</pubDate>
			<dc:creator>bobbeach</dc:creator>
			<guid isPermaLink="false">66528@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm enjoying working with the theme - superb feature set and in general pretty clear instructions - but there a couple of things I'd like to change.&#60;/p&#62;
&#60;p&#62;For my frontpage I've got the slideshow at full size - I just find it a bit too dominant. Is there any way I could reduce it by 10%?&#60;/p&#62;
&#60;p&#62;Under the slideshow I have a call to action. Is there any way to change the button color? I don't want to change the color globally, just that one button.&#60;/p&#62;
&#60;p&#62;Please bear in mind that while I'm quite happy to edit the php files, I don't actually understand what any of it means - so nice, clear instructions with actual code would help!&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Bob
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
