<?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: New image size for fullwidth pages only</title>
		<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only</link>
		<description>Support Forum - Topic: New image size for fullwidth pages only</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 22:51:16 +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/new-image-size-for-fullwidth-pages-only" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-72439</link>
			<pubDate>Thu, 23 Aug 2012 06:40:04 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">72439@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi colorit2,&#60;/p&#62;
&#60;p&#62;Glad that Devin helped you. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-72354</link>
			<pubDate>Wed, 22 Aug 2012 17:50:30 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">72354@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;ah, there were some code too much in my loop-page.php, thanks, now it works perfect!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-72332</link>
			<pubDate>Wed, 22 Aug 2012 16:37:12 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">72332@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You first need to replace the line I specified above then replace 'page' with 'fullsizestaticimage'. Try that and then see it if works. &#60;/p&#62;
&#60;p&#62;Right now the image is getting spit out in the page but not getting the proper javascript attached to it.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-71674</link>
			<pubDate>Sat, 18 Aug 2012 14:44:54 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">71674@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;P.S. I have regenerated the thumbnails!&#60;/p&#62;
&#60;p&#62;Got a similar question here concerning CORONA, but this helped me not for VELVET, perhaps it is helpful for you?&#60;br /&#62;
&#60;a href=&#34;http://www.kriesi.at/support/topic/smaller-blog-images-for-3-column-frontpage&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/smaller-blog-images-for-3-column-frontpage&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-71672</link>
			<pubDate>Sat, 18 Aug 2012 14:32:18 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">71672@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;thanks, but this doesn't work: &#60;a href=&#34;http://tinyurl.com/8egpvvc&#34; rel=&#34;nofollow&#34;&#62;http://tinyurl.com/8egpvvc&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have added there a 930x230px image at &#34;add featured media&#34; section of that page.&#60;/p&#62;
&#60;p&#62;My functions.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
$avia_config['imgSize']['fullsizestaticimage'] 	= array('width'=&#38;gt;930, 'height'=&#38;gt;230);		// big images for fullsize pages only&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;My loop-page.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;div class='post-entry'&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
$this_id = get_the_ID();&#60;br /&#62;
$heading_style = strpos(avia_post_meta($this_id, 'heading_style'), 'special');&#60;br /&#62;
//call the function that displays featured images and slideshows within posts&#60;br /&#62;
$slider = new avia_slideshow($this_id);&#60;br /&#62;
echo $slider-&#38;gt;display_small($avia_config['fullsizestaticimage']);&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;any other suggestions?&#60;/p&#62;
&#60;p&#62;Thanks a lot.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-71578</link>
			<pubDate>Fri, 17 Aug 2012 16:25:39 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">71578@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi colorit2,&#60;/p&#62;
&#60;p&#62;In your includes&#38;gt;loop-page.php change the following line:&#60;br /&#62;
&#60;code&#62;echo $slider-&#38;gt;display_small($avia_config[&#38;#39;size&#38;#39;]);&#60;/code&#62;&#60;br /&#62;
to&#60;br /&#62;
&#60;code&#62;echo $slider-&#38;gt;display_small(&#38;#39;page&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and change page to the name of your new image size. That should work in theory though it may still require some additional styling for the individual pages.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-71146</link>
			<pubDate>Wed, 15 Aug 2012 09:52:12 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">71146@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Additional note: sure, I could change in functions.php the size of the &#34;featured&#34; image size, but then the slider size at the frontpage changes, too, which I don't want. I just want to have another size (930x230px) for fullsize &#60;strong&#62;static&#60;/strong&#62; (i.e. not slider) images for normal fullsize pages (not the frontpage).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-71144</link>
			<pubDate>Wed, 15 Aug 2012 09:48:22 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">71144@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I don't understand? I mean just in general the use of an extra image size and how to use it for pages.&#60;/p&#62;
&#60;p&#62;The site is currently not yet ready, but here an example:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://tinyurl.com/9sz8c5p&#34; rel=&#34;nofollow&#34;&#62;http://tinyurl.com/9sz8c5p&#60;/a&#62; is the frontpage&#60;br /&#62;
there the fullsize slider should remain in its size as it is described in the functions.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
$avia_config['imgSize']['featured'] 	= array('width'=&#38;gt;930, 'height'=&#38;gt;390);		// big images for fullsize pages and fullsize 2D &#38;amp; 3D slider&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now I need &#60;strong&#62;in addition to this&#60;/strong&#62; an extra image size of 930x230px for fullsize pages (not frontpage) like this example page: &#60;a href=&#34;http://tinyurl.com/8egpvvc&#34; rel=&#34;nofollow&#34;&#62;http://tinyurl.com/8egpvvc&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Above this page I need not a fullsize image as described in the functions.php as &#34;featured&#34; image, but an own like I have already added to the functions.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$avia_config['imgSize']['fullsizestaticimage'] 	= array('width'=&#38;gt;930, 'height'=&#38;gt;230);		// big images for fullsize pages only&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;now I already need to know, how I can implement it in which file (page.php?), so that at normal pages (not frontpage) it shows my new fullsize image above all content in my new size of 930x230px.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-70616</link>
			<pubDate>Sat, 11 Aug 2012 19:08:13 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">70616@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Could you please show the links to the pages you described ?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "New image size for fullwidth pages only"</title>
			<link>http://www.kriesi.at/support/topic/new-image-size-for-fullwidth-pages-only#post-70471</link>
			<pubDate>Fri, 10 Aug 2012 12:29:24 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">70471@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I would like to have a different size for static images on top of fullwidth pages - and only on those pages; the sliders (like my KenBurn on the frontpage for example) should remain &#34;as is&#34;.&#60;/p&#62;
&#60;p&#62;I found in functions.php the sizes, and registered a new for my fullwidth pages static images:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
$avia_config['imgSize']['fullsizestaticimage'] 	= array('width'=&#38;gt;930, 'height'=&#38;gt;230);		// big static images for fullsize pages only&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;But now ... &#60;strong&#62;where can I add what kind of code, so that static images on top of fullwidth pages uses this new size?&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Note: if I add a &#60;em&#62;slider&#60;/em&#62; on these pages, the silders should remain the original image size format (&#34;featured&#34;) of 930x390px.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
