<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>THE MOLITOR FORUMS &#187; Topic: Display Header image Alt text</title>
		<link>http://www.themolitor.com/forums/topic/display-header-image-alt-text</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Display Header image Alt text</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 12:37:50 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/display-header-image-alt-text" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Display Header image Alt text"</title>
			<link>http://www.themolitor.com/forums/topic/display-header-image-alt-text#post-35150</link>
			<pubDate>Mon, 06 Jul 2015 11:00:17 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">35150@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Sorry, but that goes a bit beyond the level of support I'm able to provide here in the forums. If it was something I knew off the top of my head I would gladly help, but if it requires a bit of research, testing and custom code then I have ask that you submit a request for customization services here: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Hope you understand.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>chrismitchell on "Display Header image Alt text"</title>
			<link>http://www.themolitor.com/forums/topic/display-header-image-alt-text#post-35145</link>
			<pubDate>Mon, 06 Jul 2015 10:43:53 +0000</pubDate>
			<dc:creator>chrismitchell</dc:creator>
			<guid isPermaLink="false">35145@http://www.themolitor.com/forums/</guid>
			<description><p>Thats a bit frustrating, I can get it to display Array in the area but not the Alt text of the header image. Can you not point me in the right direction to be able to get this working?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Display Header image Alt text"</title>
			<link>http://www.themolitor.com/forums/topic/display-header-image-alt-text#post-35139</link>
			<pubDate>Mon, 06 Jul 2015 09:00:52 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">35139@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>The bottom right corner displays the following text for the following page templates...</p>
<p>- Gallery page template: displays the current image title + description text.</p>
<p>- Reviews + Video page tempalte: displays the title and content of posts with the "Quote" post format assigned.</p>
<p>- Videos Page template: displays the currently video post title + content.</p>
<p>Anything beyond that will require customization services. You can submit a request for customization services here: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>chrismitchell on "Display Header image Alt text"</title>
			<link>http://www.themolitor.com/forums/topic/display-header-image-alt-text#post-35133</link>
			<pubDate>Mon, 06 Jul 2015 02:37:27 +0000</pubDate>
			<dc:creator>chrismitchell</dc:creator>
			<guid isPermaLink="false">35133@http://www.themolitor.com/forums/</guid>
			<description><p>Hi all,</p>
<p>I am trying to make the Alt Text or Title appear in the bottom right hand corner of the page. I have managed to get it to display text, but not the actual bit of text for the title of the header image itself.</p>
<p>Can anyone help me with this?</p>
<p>I have put the code into the footer (please see the code below) I just want the bit saying Text Goes Here to be the Alt or Title of that header image. Any help would be great.</p>
<pre><code>&#60;!--IMAGE SLIDESHOW--&#62;
	&#60;div id=&#34;headerImages&#34;&#62;
		&#60;?php
		if($headerImages != &#039;&#039; &#38;&#38; $videoUrl == &#039;&#039; &#38;&#38; $slideshowOn == TRUE){
			if(is_random_header_image()) { shuffle($headerImages); }
			foreach($headerImages as $headerImage) {
				if ($headerImage === reset($headerImages)) {
					echo &#039;&#60;div class=&#34;header-image activeBg&#34; style=&#34;background-image:url(&#039;.$headerImage[&#039;url&#039;].&#039;);&#34;&#62;&#60;img src=&#34;&#039;.$headerImage[&#039;url&#039;].&#039;&#34; alt=&#34;&#34;&#62;&#60;div class=&#34;description-text&#34;&#62;Text goes here&#60;/div&#62;&#60;/div&#62;&#039;;
				} else {
					echo &#039;&#60;div class=&#34;header-image&#34; style=&#34;background-image:url(&#039;.$headerImage[&#039;url&#039;].&#039;);&#34;&#62;&#60;img src=&#34;&#039;.$headerImage[&#039;url&#039;].&#039;&#34; alt=&#34;&#34;&#62;&#60;div class=&#34;description-text&#34;&#62;Text goes here&#60;/div&#62;&#60;/div&#62;&#039;;
				}
			}
		} elseif($bgURL != &#039;&#039; &#38;&#38; $videoUrl == &#039;&#039;) {
			echo &#039;&#60;div class=&#34;header-image activeBg&#34; style=&#34;background-image:url(&#039;.$bgURL.&#039;);&#34;&#62;&#60;img src=&#34;&#039;.$bgURL.&#039;&#34; alt=&#34;&#34;&#62;&#60;div class=&#34;description-text&#34;&#62;Text goes here&#60;/div&#62;&#60;/div&#62;&#039;;
		} ?&#62;
	&#60;/div&#62;&#60;!--end headerImages--&#62;</code></pre>
<p>Thanks again
</p></description>
		</item>

	</channel>
</rss>
