<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Template: Global Business</title>
        <description> Just playing around with a template based on the standard lightweight.

I&amp;#039;ll make some improvements over time. Feedback welcome.</description>
        <link>https://www.phorum.org/phorum5/read.php?63,155469,155469#msg-155469</link>
        <lastBuildDate>Sat, 13 Jun 2026 05:55:00 -0400</lastBuildDate>
        <generator>Phorum 5.2.22</generator>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,156123#msg-156123</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,156123#msg-156123</link>
            <description><![CDATA[ I split part of the thread.<br />
<br />
Joe &quot;rchecka&quot; wrote:<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>rchecka</strong><br />
Ok, after many trials and tribulations, I have finally been able to make this template work on all fronts. I am slowly but surely figuring this stuff out! Turns out you can declare the css file in the header and that is what I did along with adjusting the css file in the forum directory.<br />
<br />
Anyways, here&#039;s what it looks like. I&#039;m thinking it turned out pretty nice. I even made a few helpful HTML help pages that I linked to in the top which hopefully will make BB-Code easier for my non technical members. </div></blockquote>
<br />
The following discussion about how to build a static page with template style is found <a href="http://www.phorum.org/phorum5/read.php?61,156057" target="_blank" >here</a>.]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Fri, 25 Sep 2015 03:33:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,156113#msg-156113</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,156113#msg-156113</link>
            <description><![CDATA[ Scott, I appreciate you sticking with me on this but it&#039;s not worth it any more.  The html pages on my site are functioning just fine, the header and footer are working without the include statement, and I just can&#039;t justify spending another day after today for something this minor.  <br />
<br />
FYI, that static pages module doesn&#039;t work.  You can edit the sample page and it doesn&#039;t show you your changes.  You can create a new page that doesn&#039;t work it bombs out.  I dug thru all that code and because it&#039;s module code it&#039;s not the same as the simple php with html that I&#039;m trying to accomplish.<br />
<br />
Also, adding include_once( &quot;./common.php&quot; ); says &quot;cannot modify the header&quot; and I&#039;ve tried digging around for the code in the other locations you provided without any luck.  I know others probably know the way to do this but I guess I don&#039;t know the secret handshake because I get answers like &quot;Oh maybe you should look at emerald, to understand the software better, there&#039;s only 100 files in there so figure it out.&quot;  I don&#039;t have time to understand all the ins and outs of this old-ass software, all I want is a simple static page that calls the header and that&#039;s apparently not gonna happen unless I know the secret handshake.  <br />
<br />
It should be easy to accomplish this, but the documentation on how phorum calls the header or footer isn&#039;t in the developer pages which I read 5x.  <b>That developer pages documentation is, I&#039;ll just say it, horrible.</b>  It&#039;s like one sentence per page of useless info that reads like a stereo manual written for a guy who builds stereos for a living.  It is not even remotely helpful and frankly I think it&#039;s archaic looking and should be scrapped for documentation that actually goes through the logical flow of the programming with examples of how to make something that actually matters.  Something as simple as phorum starts with this file and moves to this file next and so on would be helpful but you are expected to just guess or go thru all the code to find out and that&#039;s ridiculous.  I got more of that php to work on external sources than I did from that documentation, so what does that tell you.<br />
<br />
But as for you, I appreciate all the help you offered around here, you are an asset to this place.  Thanks again.]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Fri, 18 Sep 2015 17:12:05 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,156100#msg-156100</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,156100#msg-156100</link>
            <description><![CDATA[ If you wish to add &quot;stuff&quot; that is imported automatically in Phorum, you need to ...<br />
This is from     index. p h p   this is where you land in Phorum if your URL doesn&#039;t name some specific page.<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw2">&lt;?php</span>
&nbsp;
<span class="co1">// name your page, then replace ';index'; with the page name, if you don';t it may not work (see also read.php)  //</span>
<a href="http://www.php.net/define"><span class="kw3">define</span></a><span class="br0">&#40;</span><span class="st_h">';phorum_page'</span><span class="sy0">;,</span><span class="st_h">';index'</span><span class="sy0">;</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">include_once</span><span class="br0">&#40;</span> <span class="st0">&quot;./common.php&quot;</span> <span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">include_once</span><span class="br0">&#40;</span> <span class="st0">&quot;./include/format_functions.php&quot;</span> <span class="br0">&#41;</span><span class="sy0">;</span></pre>
... and then locate where and how the template (in common. p h p) and css are called and duplicate it.<br />
<br />
<br />
Did you look at  <a href="http://www.phorum.org/phorum5/read.php?62,139196,139196#msg-139196" target="_blank" >Module: Static Pages</a>    ?     And yes there is a learning curve here also.  It may simplify your life, or make it more complicated. No I have not tried this module.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Thu, 17 Sep 2015 19:29:52 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,156099#msg-156099</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,156099#msg-156099</link>
            <description><![CDATA[ Ok, <a href="http://cratedigging.co/contact.php" target="_blank"  rel="nofollow">here is what I got so far</a>, you can see it&#039;s functioning without the search bar, the breadcrumbs or the log in and log out options.<br />
<br />
The ONLY reason it is working is because I took the code that does function from the header and pasted it directly in the page before the body starts.  I obviously don&#039;t want to do that, I just want to call the header so it will just do it&#039;s thing.<br />
<br />
Likewise I pasted functioning footer code directly on that page and likewise I&#039;d rather just call it with the proper command.<br />
<br />
Here is the code I am using right now for this...<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw2">&lt;?php</span>
<span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$PHORUM</span><span class="br0">&#91;</span><span class="st_h">';DATA'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st_h">';CHARSET'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
    <a href="http://www.php.net/header"><span class="kw3">header</span></a><span class="br0">&#40;</span><span class="st0">&quot;Content-Type: text/html; charset=&quot;</span><span class="sy0">.</span><a href="http://www.php.net/htmlspecialchars"><span class="kw3">htmlspecialchars</span></a><span class="br0">&#40;</span><span class="re0">$PHORUM</span><span class="br0">&#91;</span><span class="st_h">';DATA'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st_h">';CHARSET'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span>
    <span class="kw1">echo</span> <span class="st_h">';&lt;?xml version=&quot;1.0&quot; encoding=&quot;'</span><span class="sy0">;.</span><span class="re0">$PHORUM</span><span class="br0">&#91;</span><span class="st_h">';DATA'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st_h">';CHARSET'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="sy0">.</span><span class="st_h">';&quot;?&gt;'</span><span class="sy0">;;</span>
<span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span>
    <span class="kw1">echo</span> <span class="st_h">';&lt;?xml version=&quot;1.0&quot; ?&gt;'</span><span class="sy0">;;</span>
<span class="br0">&#125;</span>
<span class="sy1">?&gt;</span>
<span class="sy0">&lt;!</span>DOCTYPE html <span class="kw2">PUBLIC</span> <span class="st0">&quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;</span> <span class="st0">&quot;DTD/xhtml1-transitional.dtd&quot;</span><span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;!--</span> START TEMPLATE <a href="http://www.php.net/header"><span class="kw3">header</span></a><span class="sy0">.</span>tpl <span class="sy0">--&gt;</span>
<span class="sy0">&lt;</span>html xmlns<span class="sy0">=</span><span class="st0">&quot;http://www.w3.org/1999/xhtml&quot;</span> xml<span class="sy0">:</span>lang<span class="sy0">=</span><span class="st0">&quot;{LOCALE}&quot;</span> lang<span class="sy0">=</span><span class="st0">&quot;{LOCALE}&quot;</span><span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>head<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>title<span class="sy0">&gt;</span><span class="kw2">&lt;?php</span> <span class="br0">&#123;</span> HTML_TITLE<span class="sy0">;</span> <span class="br0">&#125;</span><span class="sy1">?&gt;</span><span class="sy0">&lt;/</span>title<span class="sy0">&gt;</span> 
&nbsp;
 <span class="kw2">&lt;?php</span> <span class="br0">&#123;</span> LANG_META<span class="sy0">;</span> <span class="br0">&#125;</span><span class="sy1">?&gt;</span>
&nbsp;
<span class="sy0">&lt;!--</span> <span class="kw1">if</span><span class="br0">&#40;</span>PRINTVIEW<span class="br0">&#41;</span><span class="br0">&#123;</span>
<span class="st_h">';&lt;meta name=&quot;robots&quot; content=&quot;NOINDEX,NOFOLLOW&quot; /&gt;'</span><span class="sy0">;;</span>
<span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span>
    <span class="st_h">';&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;{ URL-&gt;CSS; }&quot; media=&quot;screen&quot; /&gt;'</span><span class="sy0">;;</span>
    <span class="st_h">';&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;{ URL-&gt;CSS_PRINT; }&quot; media=&quot;print&quot; /&gt;'</span><span class="sy0">;;</span>
	<span class="st_h">';&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;{ template_url; }/global_style_alt.css&quot; /&gt;'</span><span class="sy0">;;</span>
<span class="br0">&#125;</span><span class="sy1">?&gt;</span>
<span class="sy0">--&gt;</span>
&nbsp;
&nbsp;
<span class="sy0">&lt;</span><a href="http://www.php.net/link"><span class="kw3">LINK</span></a> rel<span class="sy0">=</span><span class="st0">&quot;stylesheet&quot;</span> href<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co/templates/global/global_style_alt.css&quot;</span><span class="sy0">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
 <span class="kw2">&lt;?php</span>	<span class="br0">&#123;</span> HEAD_TAGS<span class="sy0">;</span> <span class="br0">&#125;</span><span class="sy1">?&gt;</span>
&nbsp;
&nbsp;
&nbsp;
<span class="sy0">&lt;/</span>head<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>body<span class="sy0">&gt;</span>
&nbsp;
&nbsp;
<span class="sy0">&lt;</span>body onload<span class="sy0">=</span><span class="st0">&quot;{IF FOCUS_TO_ID}var focuselt=document.getElementById(';{FOCUS_TO_ID}';); if (focuselt) focuselt.focus();{/IF}&quot;</span><span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_site_title_bar_wrapper&quot;</span><span class="sy0">&gt;</span>
	<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_site_title_bar&quot;</span><span class="sy0">&gt;</span>
&nbsp;
    	<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;site_title&quot;</span><span class="sy0">&gt;</span>
            <span class="sy0">&lt;</span>h1<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;/&quot;</span><span class="sy0">&gt;</span>
                <span class="sy0">&lt;!--</span> Cratedigging Cooperative <span class="sy0">&lt;</span>span<span class="sy0">&gt;</span>crate digging<span class="sy0">&lt;/</span>span<span class="sy0">&gt;</span> <span class="sy0">--&gt;</span>
&nbsp;
                <span class="sy0">&lt;</span>span<span class="sy0">&gt;</span>The Cratedigging Co<span class="sy0">-</span>Op<span class="sy0">&lt;/</span>span<span class="sy0">&gt;</span>
            <span class="sy0">&lt;/</span>a<span class="sy0">&gt;&lt;/</span>h1<span class="sy0">&gt;</span>
        <span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span>
&nbsp;
        <span class="sy0">&lt;</span>ul <span class="kw2">class</span><span class="sy0">=</span><span class="st0">&quot;social_network&quot;</span><span class="sy0">&gt;</span>
&nbsp;
		<span class="sy0">&lt;</span>img border<span class="sy0">=</span><span class="st0">&quot;0&quot;</span> align<span class="sy0">=</span><span class="st0">&quot;center&quot;</span> <span class="sy0">&lt;</span>li<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;http://instagram.com/cratedigging.co&quot;</span><span class="sy0">&gt;&lt;</span>img src<span class="sy0">=</span><span class="st0">&quot;/templates/global/images/CDC-Instagram-sm.png&quot;</span> alt<span class="sy0">=</span><span class="st0">&quot;Instagram&quot;</span> <span class="sy0">/&gt;&lt;/</span>a<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span> 
&nbsp;
        <span class="sy0">&lt;/</span>ul<span class="sy0">&gt;</span>
&nbsp;
    <span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span> <span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">end</span></a> of templatemo_site_title_bar <span class="sy0">--&gt;</span>
&nbsp;
<span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span> <span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">end</span></a> of templatemo_site_title_bar_wrapper <span class="sy0">--&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_banner_wrapper&quot;</span><span class="sy0">&gt;</span>
&nbsp;
    <span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_banner&quot;</span><span class="sy0">&gt;</span>
&nbsp;
    	<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;banner_content&quot;</span><span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>img border<span class="sy0">=</span><span class="st0">&quot;0&quot;</span> hspace<span class="sy0">=</span><span class="st0">&quot;&quot;</span> align<span class="sy0">=</span><span class="st0">&quot;center&quot;</span> src<span class="sy0">=</span><span class="st0">&quot;/templates/global/images/CDC-Logo-Main.png&quot;</span> alt<span class="sy0">=</span><span class="st0">&quot;&quot;</span> title<span class="sy0">=</span><span class="st0">&quot;&quot;</span> style<span class="sy0">=</span><span class="st0">&quot;HEIGHT: 196px; BORDER-TOP-COLOR: ; WIDTH: 699px; BORDER-LEFT-COLOR: ; BORDER-BOTTOM-COLOR: ; BORDER-RIGHT-COLOR:&quot;</span><span class="sy0">&gt;</span>
&nbsp;
		<span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span>
&nbsp;
&nbsp;
    <span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span> <span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">end</span></a> of templatemo_banner <span class="sy0">--&gt;</span>
&nbsp;
<span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span> <span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">end</span></a> of templatemo_banner_wrapper <span class="sy0">--&gt;</span>
&nbsp;
&nbsp;
<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_menu_wrapper&quot;</span><span class="sy0">&gt;</span>
&nbsp;
	<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_menu&quot;</span><span class="sy0">&gt;</span>
    	<span class="sy0">&lt;</span>ul<span class="sy0">&gt;</span>            <span class="sy0">&lt;</span>li<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co&quot;</span><span class="sy0">&gt;&lt;</span>span<span class="sy0">&gt;&lt;/</span>span<span class="sy0">&gt;</span>Forums<span class="sy0">&lt;/</span>a<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span>            <span class="sy0">&lt;</span>li<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co/mission.htm&quot;</span><span class="sy0">&gt;&lt;</span>span<span class="sy0">&gt;&lt;/</span>span<span class="sy0">&gt;</span>Mission<span class="sy0">&lt;/</span>a<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span>            <span class="sy0">&lt;</span>li<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co/formatting-help.htm&quot;</span><span class="sy0">&gt;&lt;</span>span<span class="sy0">&gt;&lt;/</span>span<span class="sy0">&gt;</span>Formatting Help<span class="sy0">&lt;/</span>a<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span>            <span class="sy0">&lt;</span>li<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co/FAQs.htm&quot;</span><span class="sy0">&gt;&lt;</span>span<span class="sy0">&gt;&lt;/</span>span<span class="sy0">&gt;</span>FAQs<span class="sy0">&lt;/</span>a<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span>            <span class="sy0">&lt;</span>li<span class="sy0">&gt;&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co/contact.htm&quot;</span><span class="sy0">&gt;&lt;</span>span<span class="sy0">&gt;&lt;/</span>span<span class="sy0">&gt;</span>Contact<span class="sy0">&lt;/</span>a<span class="sy0">&gt;&lt;/</span>li<span class="sy0">&gt;</span>        <span class="sy0">&lt;/</span>ul<span class="sy0">&gt;</span> 
&nbsp;
&nbsp;
    <span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span> <span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">end</span></a> of templatemo_menu <span class="sy0">--&gt;</span>
&nbsp;
<span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span> <span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">end</span></a> of templatemo_menu_wrapper <span class="sy0">--&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_content&quot;</span><span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>body onload<span class="sy0">=</span><span class="st0">&quot;{IF FOCUS_TO_ID}var focuselt=document.getElementById(';{FOCUS_TO_ID}';); if (focuselt) focuselt.focus();{/IF}&quot;</span><span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;phorum&quot;</span><span class="sy0">&gt;</span>
&nbsp;
 <span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;user-info&quot;</span> <span class="kw2">class</span><span class="sy0">=</span><span class="st0">&quot;{IF LOGGEDIN}logged-in{ELSE}logged-out{/IF}&quot;</span><span class="sy0">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span>
&nbsp;
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&amp;</span>nbsp<span class="sy0">;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;!--</span> Put Body of Work HERE  <span class="sy0">--&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&amp;</span>nbsp<span class="sy0">;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>h1 align<span class="sy0">=</span><span class="st0">&quot;center&quot;</span><span class="sy0">&gt;</span>Contact Us<span class="sy0">&lt;/</span>h1<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;</span>The Cratedigging Cooperative is the brainchild of long<span class="sy0">-</span><a href="http://www.php.net/time"><span class="kw3">time</span></a> friends rchecka and Uptownkid<span class="sy0">.&amp;</span>nbsp<span class="sy0">;</span> The CDC is
maintained and upgraded by rchecka<span class="sy0">.&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&lt;</span>strong<span class="sy0">&gt;</span>rchecka<span class="sy0">:&lt;/</span>strong<span class="sy0">&gt;</span> moderator and webmaster<span class="sy0">&amp;</span>nbsp<span class="sy0">;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&lt;</span>strong<span class="sy0">&gt;</span>Uptownkid<span class="sy0">:&lt;/</span>strong<span class="sy0">&gt;</span> moderator<span class="sy0">&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>h2 align<span class="sy0">=</span><span class="st0">&quot;center&quot;</span><span class="sy0">&gt;</span>Please PM <span class="kw1">if</span> Possible<span class="sy0">&lt;/</span>h2<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p align<span class="sy0">=</span><span class="st0">&quot;center&quot;</span><span class="sy0">&gt;&lt;</span>img title<span class="sy0">=</span><span class="st0">&quot;&quot;</span>
     border<span class="sy0">=</span><span class="st0">&quot;0&quot;</span>
     alt<span class="sy0">=</span><span class="st0">&quot;&quot;</span>
     src<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co/templates/global/images/PM-first.jpg&quot;</span><span class="sy0">&gt;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&lt;</span>br<span class="sy0">&gt;</span>
<span class="sy0">&lt;</span>strong<span class="sy0">&gt;</span>To communicate with the moderators and\or webmaster<span class="sy0">&amp;</span>nbsp<span class="sy0">;</span>we prefer PMs verses
emails<span class="sy0">.&lt;/</span>strong<span class="sy0">&gt;&amp;</span>nbsp<span class="sy0">;&amp;</span>nbsp<span class="sy0">;</span>Either PM rchecka or Uptownkid <span class="kw1">if</span> you need to discuss anything on your mind<span class="sy0">.&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&amp;</span>nbsp<span class="sy0">;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&amp;</span>nbsp<span class="sy0">;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>h2 align<span class="sy0">=</span><span class="st0">&quot;center&quot;</span><span class="sy0">&gt;&amp;</span>nbsp<span class="sy0">;</span><span class="kw1">If</span> all <span class="kw1">else</span> fails<span class="sy0">...&lt;/</span>h2<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p align<span class="sy0">=</span><span class="st0">&quot;center&quot;</span><span class="sy0">&gt;&lt;</span>img title<span class="sy0">=</span><span class="st0">&quot;&quot;</span>
     border<span class="sy0">=</span><span class="st0">&quot;0&quot;</span>
     alt<span class="sy0">=</span><span class="st0">&quot;&quot;</span>
     src<span class="sy0">=</span><span class="st0">&quot;http://cratedigging.co/templates/global/images/email2.jpg&quot;</span><span class="sy0">&gt;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&lt;</span>strong<span class="sy0">&gt;</span><span class="kw1">For</span> non members with Cratedigging<span class="sy0">.</span>co questions<span class="sy0">,</span> or <span class="kw2">new</span> users having difficulty signing
up<span class="sy0">...&lt;/</span>strong<span class="sy0">&gt;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&lt;</span>font color<span class="sy0">=</span><span class="st0">&quot;#000000&quot;</span><span class="sy0">&gt;&lt;</span>strong<span class="sy0">&gt;</span><span class="kw1">For</span> general feedback or inquiries<span class="sy0">:&lt;/</span>strong<span class="sy0">&gt;&lt;/</span>font<span class="sy0">&gt;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
<span class="sy0">&lt;</span>p<span class="sy0">&gt;&amp;</span>nbsp<span class="sy0">;&lt;/</span>p<span class="sy0">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<span class="sy0">&lt;!--</span> thru here <span class="sy0">--&gt;</span>
&nbsp;
<span class="sy0">&lt;/</span>script<span class="sy0">&gt;&lt;</span>div <span class="kw2">class</span><span class="sy0">=</span><span class="st0">&quot;paging&quot;</span><span class="sy0">&gt;</span>
<span class="sy0">&amp;</span>nbsp<span class="sy0">;</span>
<span class="sy0">&lt;/</span>div<span class="sy0">&gt;&lt;/</span>div<span class="sy0">&gt;</span>
    	<span class="sy0">&lt;</span>div <span class="kw2">class</span><span class="sy0">=</span><span class="st0">&quot;cleaner&quot;</span><span class="sy0">&gt;&lt;/</span>div<span class="sy0">&gt;</span>
    <span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span>
&nbsp;
 <span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">end</span></a> of templatemo_content <span class="sy0">--&gt;</span>
<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_content_bottom&quot;</span><span class="sy0">&gt;&lt;/</span>div<span class="sy0">&gt;</span>
&nbsp;
<span class="sy0">&lt;</span>div id<span class="sy0">=</span><span class="st0">&quot;templatemo_footer&quot;</span><span class="sy0">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
               Copyright <span class="nu0">2015</span> <span class="sy0">&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;&quot;</span><span class="sy0">&gt;</span>Cratedigging Cooperative<span class="sy0">&lt;/</span>a<span class="sy0">&gt;.</span> Driven by <span class="sy0">&lt;</span>a href<span class="sy0">=</span><span class="st0">&quot;http://www.phorum.org/&quot;</span><span class="sy0">&gt;</span>Phorum<span class="sy0">&lt;/</span>a<span class="sy0">&gt;.</span> Template by osDesk<span class="sy0">.</span> 
<span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span>
<span class="sy0">&lt;</span>br <span class="sy0">/&gt;&lt;</span>br <span class="sy0">/&gt;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
    <span class="sy0">&lt;/</span>div<span class="sy0">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<span class="sy0">&lt;/</span>body<span class="sy0">&gt;</span>
<span class="sy0">&lt;/</span>html<span class="sy0">&gt;</span>
<span class="sy0">&lt;!--</span> <a href="http://www.php.net/end"><span class="kw3">END</span></a> TEMPLATE <span class="br0">&#123;</span>TEMPLATE<span class="br0">&#125;</span><span class="sy0">/</span>footer<span class="sy0">.</span>tpl <span class="sy0">--&gt;</span>
<span class="sy1">?&gt;</span></pre>
<br />
This trial and error messing around crap is taking me literally days when there must be a simple answer of where to place the 2 includes and to somehow get the login information from the database.<br />
<br />
Can I get some specific help on that one little part so I can please be done with this?<br />
<br />
Thanks!<br />
<br />
<span style="font-size:small">edit: removed unnecessary information.</span>]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Thu, 17 Sep 2015 17:32:19 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155904#msg-155904</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155904#msg-155904</link>
            <description><![CDATA[ ^Scott, I appreciate the help but I&#039;m sorry, I just don&#039;t understand where those values are declared.  I looked at global_styles.css and I don&#039;t see anything in there.  I just went thru half the template files looking for where you are seeing this and I am not finding the smoking gun.<br />
<br />
Regarding testing it out in a sub folder, I thought of doing this, and I&#039;d still like to, but I&#039;m afraid of putting another database on my server, I&#039;m just afraid I&#039;ll screw up my current forum&#039;s database.<br />
<br />
Where and how are you seeing this <br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Scott Finegan</strong><br />
Your paths don&#039;t match where your template is located. May be as simple as a missing / . or dot. <pre class="bbcode">
Landing/Home page :  h t tp://cratedig  ging. co/templates/global/global_style.css
General Discussion :   h t tp://cratedig  ging. co/<span style="color:#FF0000">list</span>/templates/global/global_style.css</pre>
<br />
</div></blockquote>
<br />
Where and how are you seeing this <br />
<br />
I am using Firebug to look at the html code behind the scenes and I still don&#039;t even see how that tells me what files declare these urls.  <br />
<br />
Can you tell me specifics as to what I am missing?  <br />
<br />
Also, why would it be ok with the simple blue template and not the global?  Was this a mistake on user Pemba&#039;s part or did I not flip the right switch?  <br />
<br />
This is very frustrating, I am trying to figure it out with the help you are giving me but I&#039;m not there yet with you.]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Mon, 13 Jul 2015 14:20:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155901#msg-155901</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155901#msg-155901</link>
            <description><![CDATA[ Your paths don&#039;t match where your template is located. May be as simple as a missing / . or dot. <pre class="bbcode">
Landing/Home page :  h t tp://cratedig  ging. co/templates/global/global_style.css
General Discussion :   h t tp://cratedig  ging. co/<span style="color:#FF0000">list</span>/templates/global/global_style.css</pre>
<br />
<br />
<br />
You can create a new forum, and then change its template from the default simple blue, to global. Without the need to &quot;read only&quot;.    <br />
<br />
Or<br />
 A whole New separate install for testing. Put the whole install in a subdirectory, change the prefix in the config to use a different database and table prefix, then type the URL to get there.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Fri, 10 Jul 2015 17:07:31 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155900#msg-155900</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155900#msg-155900</link>
            <description><![CDATA[ I have it turned on now if anyone can take a look at it for me I&#039;d appreciate it greatly.  I have it in read only mode for a few hours and have this basically broke template running so if you see anything causing the problem specific, I can get started right away on changing the template files that need the fix.<br />
<br />
Thanks!]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Fri, 10 Jul 2015 15:54:25 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155899#msg-155899</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155899#msg-155899</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Scott Finegan</strong><br />
The only template I see is simple blue on any page as an  unregistered visitor.</div></blockquote>
<br />
I had it turned to simple blue since it&#039;s basically broke and simple blue isn&#039;t.  I will turn to Global and leave it on for your inspection when ever you are ready just comment on this thread and I&#039;ll do so immediately.<br />
<br />
Thanks Scott!]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Mon, 06 Jul 2015 11:46:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155898#msg-155898</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155898#msg-155898</link>
            <description><![CDATA[ The only template I see is simple blue on any page as an  unregistered visitor.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Fri, 03 Jul 2015 13:45:35 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155897#msg-155897</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155897#msg-155897</link>
            <description><![CDATA[ I&#039;m sorry to be a pest, but can one of you guys get me started on doing this?   <br />
<br />
I can&#039;t find the variables that need to be changed to get the template that works just fine when you are at cratedigging.co...<br />
<br />
It looks like this...<br />
<br />
<img src="http://i.imgur.com/fKASgES.jpg" class="bbcode" border="0" /><br />
<br />
...but then as soon as you click on any of the forums it goes back to this<br />
<br />
<img src="http://i.imgur.com/4bGMcSV.jpg" class="bbcode" border="0" /><br />
<br />
I looked in all the .tpls mentioned and the info.php and the settings and I am not seeing where this is controlled from primary page to each sub forum.<br />
<br />
If you get me started down the right path for one of the modules, I think I can apply that to each spot that needs changing.<br />
<br />
ALSO I&#039;m not sure why this would be happening since the other templates when turned on don&#039;t do this.]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Thu, 02 Jul 2015 16:43:07 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155895#msg-155895</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155895#msg-155895</link>
            <description><![CDATA[ Thanks Thomas and Scott.  I finally have time to work on it, so I&#039;m working on it now.]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Tue, 30 Jun 2015 14:04:06 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155892#msg-155892</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155892#msg-155892</link>
            <description><![CDATA[ probably some related links to images, not starting with / and you are using a sef module which generates different links for the forums.<br />
check the settings.tpl and if its not only there, you probably have to check all the templates as scott suggested.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Wed, 24 Jun 2015 01:41:33 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155890#msg-155890</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155890#msg-155890</link>
            <description><![CDATA[ There is an index tpl, a list tpl, and read tpl, plus a lot of others. you probably need to adjust them all.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Tue, 23 Jun 2015 17:28:52 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155889#msg-155889</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155889#msg-155889</link>
            <description><![CDATA[ So I am editing this template now for use and things are going smoothly as I substitute my elements for the ones built into this template.<br />
<br />
I am using simple blue in the meantime while I edit this template.<br />
<br />
I have run into one problem though, maybe someone can help me identify where to fix this template so the background top and sides stay with the first page.  In other words, it looks great until I click on any sub forum or off the primary page and at that point it can&#039;t find the background and top and side images.<br />
<br />
How do I make the template stick on more than the primary page?  Is there something wrong with the template or did I forget a step?<br />
<br />
Thanks in advance.]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Tue, 23 Jun 2015 16:08:44 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155790#msg-155790</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155790#msg-155790</link>
            <description><![CDATA[ Figuring out what to change, or add requires you to have an idea where it is coming from to begin with. You should  have a browser like FireFox that supports Firebug or equivalent (Chrome?), and learn its basic uses.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Wed, 03 Jun 2015 17:30:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155784#msg-155784</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155784#msg-155784</link>
            <description><![CDATA[ This is one of the cleanest, nicest templates I&#039;ve ever seen for Phorum.  I tried to make it work with mine and I got all your surrounding elements.  Is this template available just with the guts (the inner HTML stuff only, not the outer borders and icons and such) or could you show me how to edit the template for my icons and links instead. <br />
<br />
Sorry I know this is a newb question, but I haven&#039;t touched my template in years and it&#039;s time for a change.]]></description>
            <dc:creator>rchecka</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Tue, 02 Jun 2015 12:59:20 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155503#msg-155503</guid>
            <title>Re: Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155503#msg-155503</link>
            <description><![CDATA[ Your designs are beautiful!]]></description>
            <dc:creator>Benny</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Mon, 10 Nov 2014 15:36:52 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?63,155469,155469#msg-155469</guid>
            <title>Template: Global Business</title>
            <link>https://www.phorum.org/phorum5/read.php?63,155469,155469#msg-155469</link>
            <description><![CDATA[ Just playing around with a template based on the standard lightweight.<br />
<br />
I&#039;ll make some improvements over time. Feedback welcome.]]></description>
            <dc:creator>Pemba</dc:creator>
            <category>5.2 Templates</category>
            <pubDate>Fri, 17 Oct 2014 13:13:10 -0400</pubDate>
        </item>
    </channel>
</rss>
