<?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 - Tag: Alt Tags - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/alt-tags</link>
		<description>Support Forum - Tag: Alt Tags - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 07:05:05 +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/tags/alt-tags" rel="self" type="application/rss+xml" />

		<item>
			<title>Mya on "Logo has no Alt Tag"</title>
			<link>http://www.kriesi.at/support/topic/logo-has-no-alt-tag#post-72397</link>
			<pubDate>Thu, 23 Aug 2012 01:43:19 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">72397@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi sdslaw,&#60;/p&#62;
&#60;p&#62;I'm answering your question in your other thread.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kriesi.at/support/topic/site-broken-really-really-just-need-an-alt-tag-for-my-logo&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/site-broken-really-really-just-need-an-alt-tag-for-my-logo&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sdslaw on "Logo has no Alt Tag"</title>
			<link>http://www.kriesi.at/support/topic/logo-has-no-alt-tag#post-72391</link>
			<pubDate>Wed, 22 Aug 2012 23:23:23 +0000</pubDate>
			<dc:creator>sdslaw</dc:creator>
			<guid isPermaLink="false">72391@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I just followed these instructions, but I still don't have an alt tag. I have the image description in all four places: title, caption, alt and description. And still, I can't get an alt tag on my logo.&#60;/p&#62;
&#60;p&#62;Guys, this is very important. Huge. I'm the SEO guy and I can't explain to my boss why the alt tag isn't showing up. I copied the php that I found here and made the changes. The website is at sdsfamilylaw . com
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Logo has no Alt Tag"</title>
			<link>http://www.kriesi.at/support/topic/logo-has-no-alt-tag#post-64021</link>
			<pubDate>Fri, 06 Jul 2012 04:46:45 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">64021@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Open up framework &#38;gt; php &#38;gt; function-set-avia-frontend.php. Look for this code.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(!function_exists(&#38;#39;avia_logo&#38;#39;))
{
	/**
	 * return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
	 * otherwise display the logo file linked in the css file for the .bg-logo class
	 * @return string the logo + url
	 */
	function avia_logo()
	{
		if($logo = avia_get_option(&#38;#39;avia, logo&#38;#39;))
		{
			 $logo = &#38;quot;&#38;lt;img src=&#38;quot;.$logo.&#38;quot; alt=&#38;#39;&#38;#39; /&#38;gt;&#38;quot;;
			 $logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;
		}
		else
		{
			$logo = get_bloginfo(&#38;#39;name&#38;#39;);
			$logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo bg-logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;
		}

		return $logo;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(!function_exists(&#38;#39;avia_logo&#38;#39;))
{
	/**
	 * return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
	 * otherwise display the logo file linked in the css file for the .bg-logo class
	 * @return string the logo + url
	 */
	function avia_logo()
	{
		if($logo = avia_get_option(&#38;#39;avia, logo&#38;#39;))
		{
			 $logo = &#38;quot;&#38;lt;img src=&#38;quot;.$logo.&#38;quot; alt=&#38;#39;&#38;#39; /&#38;gt;&#38;quot;;
			 $alt = get_bloginfo(&#38;#39;name&#38;#39;);
			 $logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39; alt=&#38;#39;&#38;quot;.$alt.&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;
		}
		else
		{
			$logo = get_bloginfo(&#38;#39;name&#38;#39;);
			$logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo bg-logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;
		}

		return $logo;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>THP on "Logo has no Alt Tag"</title>
			<link>http://www.kriesi.at/support/topic/logo-has-no-alt-tag#post-64002</link>
			<pubDate>Fri, 06 Jul 2012 02:57:10 +0000</pubDate>
			<dc:creator>THP</dc:creator>
			<guid isPermaLink="false">64002@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey guys, I opened a similar thread a couple weeks ago which you guys sorted for me really quickly, but the solution for it doesn't seem to work for the logo.&#60;/p&#62;
&#60;p&#62;No matter where I add ALT text for the logo (you said to put it in &#34;Caption&#34; rather than &#34;alt&#34; tag under Media in Wordpress, I have it in ALL fields just in case...), the logo always returns a &#34;&#34; for the alt field.&#60;/p&#62;
&#60;p&#62;Any ideas why the logo doesn't grab alt information?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Add Alt Tags to rotating images in header, and main page &#039;sub-pages&#039;?"</title>
			<link>http://www.kriesi.at/support/topic/add-alt-tags-to-rotating-images-in-header-and-main-page-sub-pages#post-30346</link>
			<pubDate>Mon, 24 Oct 2011 15:56:56 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">30346@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Great - thanks for the hint. Glad that you found a solution.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karlvonkries on "Add Alt Tags to rotating images in header, and main page &#039;sub-pages&#039;?"</title>
			<link>http://www.kriesi.at/support/topic/add-alt-tags-to-rotating-images-in-header-and-main-page-sub-pages#post-30311</link>
			<pubDate>Mon, 24 Oct 2011 04:46:52 +0000</pubDate>
			<dc:creator>karlvonkries</dc:creator>
			<guid isPermaLink="false">30311@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Note:  it totally works to just edit the title / alt tags in the visual editor on the header_images page - no need to mess with the header.php&#60;/p&#62;
&#60;p&#62;FYI.&#60;br /&#62;
- K
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karlvonkries on "Add Alt Tags to rotating images in header, and main page &#039;sub-pages&#039;?"</title>
			<link>http://www.kriesi.at/support/topic/add-alt-tags-to-rotating-images-in-header-and-main-page-sub-pages#post-30289</link>
			<pubDate>Sun, 23 Oct 2011 20:02:16 +0000</pubDate>
			<dc:creator>karlvonkries</dc:creator>
			<guid isPermaLink="false">30289@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Makes sense for the main rotating images.&#60;/p&#62;
&#60;p&#62;How about a solution for the three sub-page images?  see &#60;a href=&#34;http://www.lightmanufacturingllc.com&#34; rel=&#34;nofollow&#34;&#62;http://www.lightmanufacturingllc.com&#60;/a&#62; for an example...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Add Alt Tags to rotating images in header, and main page &#039;sub-pages&#039;?"</title>
			<link>http://www.kriesi.at/support/topic/add-alt-tags-to-rotating-images-in-header-and-main-page-sub-pages#post-29136</link>
			<pubDate>Mon, 10 Oct 2011 07:19:40 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">29136@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
the easiest way is to hardcode the images. open up header.php and add your image files (including alt tag) after following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;!-- WANT TO EDIT YOUR SLIDESHOW IMAGES DIRECTLY? ADD ANY NUMBER OF IMAGES YOU LIKE BELOW--&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>karlvonkries on "Add Alt Tags to rotating images in header, and main page &#039;sub-pages&#039;?"</title>
			<link>http://www.kriesi.at/support/topic/add-alt-tags-to-rotating-images-in-header-and-main-page-sub-pages#post-29120</link>
			<pubDate>Mon, 10 Oct 2011 05:56:56 +0000</pubDate>
			<dc:creator>karlvonkries</dc:creator>
			<guid isPermaLink="false">29120@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Greetings Kriesi and Forum -&#60;/p&#62;
&#60;p&#62;We're using Cubit @ &#60;a href=&#34;http://www.lightmanufacturingllc.com&#34; rel=&#34;nofollow&#34;&#62;http://www.lightmanufacturingllc.com&#60;/a&#62; (love it), but would like to add some relevant Alt-tags to the slider images and/or the main-pags sub-pages.  Because so much of the main page for the theme is 'assembled' by the background PHP, it's a little harder for the user to add the alt tags.&#60;/p&#62;
&#60;p&#62;What's the best place to add the alt-tag code in the Theme Editor?&#60;br /&#62;
I don't want to break anything by mistake..&#60;/p&#62;
&#60;p&#62;Many thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27702</link>
			<pubDate>Sat, 24 Sep 2011 10:14:22 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27702@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that everything works now :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ancientgeek on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27621</link>
			<pubDate>Fri, 23 Sep 2011 08:55:38 +0000</pubDate>
			<dc:creator>ancientgeek</dc:creator>
			<guid isPermaLink="false">27621@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Supa Dupa, thanks dude.&#60;/p&#62;
&#60;p&#62;Well, that's how you learn isn't it? Just keep hacking away, even though you think you know it, you don't.&#60;/p&#62;
&#60;p&#62;Thanks for your help, and sorry for false alarm.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27589</link>
			<pubDate>Fri, 23 Sep 2011 05:06:21 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27589@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes - the description field is used as alt tag (it's not obvious though so I'll ask Kriesi to add a view words to the docs). The 'Alternate Text'  is useless (at least for our theme).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ancientgeek on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27552</link>
			<pubDate>Thu, 22 Sep 2011 16:11:12 +0000</pubDate>
			<dc:creator>ancientgeek</dc:creator>
			<guid isPermaLink="false">27552@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Dude,&#60;br /&#62;
I have just double checked, something seemed wrong - it may be me.&#60;/p&#62;
&#60;p&#62;On my gallery page (the portfolio) only one of the slide images was showing an alt tag, but on closer inspection it seems to be the wrong alt tag.&#60;br /&#62;
After investigation it seems the alt tag used is actually the 'Description' field in the media library and not the 'Alternate Text' field which is being ignored.&#60;br /&#62;
Is that just me? I presumed the  'Alternate Text'  was the alt tag but it's actually the description field which is used.&#60;br /&#62;
So this may be a false alarm.&#60;/p&#62;
&#60;p&#62;If so, what is the  'Alternate Text'  field used for?&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27544</link>
			<pubDate>Thu, 22 Sep 2011 12:56:56 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27544@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I see no reason why the slider images have no alt tag - it seems like the &#34;avia_image_by_id&#34; function in framework\php\function-set-avia-frontend.php and image title/description are set based on the thumbnail/attachment id. I'll ask Kriesi to look into it. Maybe we've found a bug here.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ancientgeek on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27541</link>
			<pubDate>Thu, 22 Sep 2011 11:44:34 +0000</pubDate>
			<dc:creator>ancientgeek</dc:creator>
			<guid isPermaLink="false">27541@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I don't know what you mean by &#34;did you check if &#34;Caption Title&#34;, etc. are set for all slider images&#34;.&#60;/p&#62;
&#60;p&#62;As I said, I have entries in Caption Titles as well as alt tags. I'm not aware of any tick boxes that need ticking.&#60;br /&#62;
The alt tags appear (in view source) for the same images on portfolio entries but not on the home page.&#60;/p&#62;
&#60;p&#62;Just to clarify that, I have images in porfolio entries appearing in the slider - on view source the alt tags are showing up.&#60;br /&#62;
Using the same images, picked from the media library, but this time on the slider on the home page, the alt tags are showing up as empty on the view source.&#60;/p&#62;
&#60;p&#62;This is taking a few points off my SEO efforts.&#60;/p&#62;
&#60;p&#62;thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27335</link>
			<pubDate>Mon, 19 Sep 2011 20:30:06 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27335@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
the alt tag is set for some entries and for some not - did you check if &#34;Caption Title&#34;, etc. are set for all slider images?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ancientgeek on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-27312</link>
			<pubDate>Mon, 19 Sep 2011 10:15:40 +0000</pubDate>
			<dc:creator>ancientgeek</dc:creator>
			<guid isPermaLink="false">27312@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I didn't quite understand the original question here but it sounds like the problem I have.&#60;br /&#62;
I am using broadscope 2.0 and have just set up a new site. After checking the seo, it seems all my alt tag are not showing up when I view source on the home page.&#60;br /&#62;
The home page has portfolio images running and the alt attributes are set on the media library and in the boxes on the 'Caption Title' in 'Add Featured Images'&#60;/p&#62;
&#60;p&#62;Are you saying that this is normal? Can't I have my alt tags showing?&#60;/p&#62;
&#60;p&#62;My site is arcadiabuildersltd.co.uk and view source will show the problem.&#60;/p&#62;
&#60;p&#62;Thanks...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-26504</link>
			<pubDate>Tue, 06 Sep 2011 23:15:22 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">26504@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Unfortunately I dont think thats easily possible, the image and alt tags are collected by a complex behind the scene wordpress function, adding this to the theme would require some heavy modifications that go way beyond any cost/benefit ratio
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aaawow on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-26284</link>
			<pubDate>Fri, 02 Sep 2011 13:27:09 +0000</pubDate>
			<dc:creator>aaawow</dc:creator>
			<guid isPermaLink="false">26284@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Please help me
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aaawow on "alt tag in cu3er and portfolion"</title>
			<link>http://www.kriesi.at/support/topic/alt-tag-in-cu3er-and-portfolion#post-26231</link>
			<pubDate>Thu, 01 Sep 2011 20:30:50 +0000</pubDate>
			<dc:creator>aaawow</dc:creator>
			<guid isPermaLink="false">26231@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;by some reason cu3er and preview in portfolio don't use alt tag from mediafiles. if i insert image from medialibrary it uses alt tag. &#60;/p&#62;
&#60;p&#62;it is possible to teach theme to use alt tag for SEO reasons?&#60;br /&#62;
my setup &#60;a href=&#34;http://www.hintsolutions.ru&#34; rel=&#34;nofollow&#34;&#62;http://www.hintsolutions.ru&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Alt Tags for Slider and Portfolio Images"</title>
			<link>http://www.kriesi.at/support/topic/alt-tags-for-slider-and-portfolio-images#post-20862</link>
			<pubDate>Sat, 11 Jun 2011 12:53:45 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">20862@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I hope it helps you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>albertlagrange on "Alt Tags for Slider and Portfolio Images"</title>
			<link>http://www.kriesi.at/support/topic/alt-tags-for-slider-and-portfolio-images#post-20826</link>
			<pubDate>Fri, 10 Jun 2011 13:30:24 +0000</pubDate>
			<dc:creator>albertlagrange</dc:creator>
			<guid isPermaLink="false">20826@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I saw in the other post that the SEO Image plugin didn't work. But I'll give it a try.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Alt Tags for Slider and Portfolio Images"</title>
			<link>http://www.kriesi.at/support/topic/alt-tags-for-slider-and-portfolio-images#post-20809</link>
			<pubDate>Fri, 10 Jun 2011 06:09:37 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">20809@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
have you tried plugins like: &#60;a href=&#34;http://wordpress.org/extend/plugins/seo-image/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/seo-image/&#60;/a&#62; ? Currently it's not easily possible to add image attributes to the slider images within the framework / kriesi_build_image function because some major changes are required.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>albertlagrange on "Alt Tags for Slider and Portfolio Images"</title>
			<link>http://www.kriesi.at/support/topic/alt-tags-for-slider-and-portfolio-images#post-20720</link>
			<pubDate>Wed, 08 Jun 2011 19:40:46 +0000</pubDate>
			<dc:creator>albertlagrange</dc:creator>
			<guid isPermaLink="false">20720@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Support Team&#60;/p&#62;
&#60;p&#62;I'm using the Avisio theme and I need to optimize the site for SEO.&#60;/p&#62;
&#60;p&#62;Will you please let me know how I can add the Alt Tags to the slider images and portfolio images? I've read a few post on this forum but it doesn't seem that it has to do with the Avisio theme. For instance I can't find a kriesi_build_image function.&#60;/p&#62;
&#60;p&#62;I appreciate your help,&#60;br /&#62;
Albert
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "No Alt Tags On Main Page Slider"</title>
			<link>http://www.kriesi.at/support/topic/no-alt-tags-on-main-page-slider#post-15928</link>
			<pubDate>Wed, 30 Mar 2011 05:44:31 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">15928@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Strange - seo image should work :/ - I'm sorry but I don't have another solution...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>memorial on "No Alt Tags On Main Page Slider"</title>
			<link>http://www.kriesi.at/support/topic/no-alt-tags-on-main-page-slider#post-15835</link>
			<pubDate>Tue, 29 Mar 2011 03:09:01 +0000</pubDate>
			<dc:creator>memorial</dc:creator>
			<guid isPermaLink="false">15835@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;dude ... thanks for the reply ... tried the plugin, it didn't add alt tags to slider images ... : /&#60;/p&#62;
&#60;p&#62;any other suggestions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "No Alt Tags On Main Page Slider"</title>
			<link>http://www.kriesi.at/support/topic/no-alt-tags-on-main-page-slider#post-15783</link>
			<pubDate>Mon, 28 Mar 2011 05:18:57 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">15783@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,                                                                                                                                                                                                                          the Display slider doesn't support WP alt tags at the moment. The plugin: &#60;a href=&#34;http://wordpress.org/extend/plugins/seo-image/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/seo-image/&#60;/a&#62; can set the post/page titles as alt tag though.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>memorial on "No Alt Tags On Main Page Slider"</title>
			<link>http://www.kriesi.at/support/topic/no-alt-tags-on-main-page-slider#post-15771</link>
			<pubDate>Sun, 27 Mar 2011 23:19:33 +0000</pubDate>
			<dc:creator>memorial</dc:creator>
			<guid isPermaLink="false">15771@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In my media, I've created Titles and Alternate Text for all of the images used on my Display theme main page slider, however, upon view source ... they all have empty alt tags ... alt=&#34;&#34;&#60;/p&#62;
&#60;p&#62;Specifically for search engine optimization reasons, I'd like to add alt tags ... how can I do that with the Display theme which I'm using here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://medicalwebstrategies.com&#34; rel=&#34;nofollow&#34;&#62;http://medicalwebstrategies.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks for your help.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
