<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title></title>
        <link>https://interactivetools.com/forum/forum-search.php?k=user%3Adsternalski</link>
        <description></description>
        <pubDate>Sun, 19 Apr 2026 10:23:55 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Adsternalski&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Jason] Navigation breaking</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217419#post2217419</link>
          <description><![CDATA[I already have a 'hidden' checkbox, and I can't really use this not to display hidden as this will affect other pages.<br /><br />I have tried this: <br /><br /> &lt;?php foreach ($allIndex_homeRecords as $categoryRecord): ?&gt;<br />				&lt;?php echo $categoryRecord['_listItemStart']; ?&gt;<br />                    &lt;?php if(!$categoryRecord['is_feature']): ?&gt;<br />                        &lt;span &lt;?php if($thisPage == &quot;index&quot;){echo 'class=&quot;currentpage&quot;';} ?&gt;&gt;&lt;a href=&quot;&lt;?php echo $categoryRecord['_link']; ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name']; ?&gt;&lt;/a&gt;&lt;/span&gt;<br />                    &lt;?php endif; ?&gt;<br />                &lt;?php echo $categoryRecord['_listItemEnd']; ?&gt;<br />            &lt;?php endforeach; ?&gt;<br /><br />And although it doesn't break the navigation, it doesn't completely remove the empty &lt;li&gt;'s.<br /><br />Attached is an image of what I mean.<br />]]></description>
          <pubDate>Sat, 11 Aug 2012 19:28:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217419#post2217419</guid>
        </item>
                <item>
          <title>Re: [Jason] Navigation breaking</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217371#post2217371</link>
          <description><![CDATA[Hi,<br /><br />I will give that a try, but I have a feeling that although it will hide the &lt;a&gt; tag, that it won't hide the &lt;li&gt; tag, leaving a slight height in the empty &lt;li&gt;. <br /><br />I have used code like this before to hide features in the navigation &amp; it worked fine in an older version of the CMS, so I'm wondering if possibly where the code behind the CMS has been updated that it now doesn't work.<br />]]></description>
          <pubDate>Wed, 08 Aug 2012 14:15:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217371#post2217371</guid>
        </item>
                <item>
          <title>Re: [Jason] Navigation breaking</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217367#post2217367</link>
          <description><![CDATA[Hi,<br /><br />In the first for each loop, I have an ! (explanation mark) before the variable as I'm trying to output all records except those that have is_feature = 1.<br />]]></description>
          <pubDate>Wed, 08 Aug 2012 13:41:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217367#post2217367</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] Navigation breaking</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217360#post2217360</link>
          <description><![CDATA[Hi,<br /><br />Yes I have in the getRecords call but not in the getCategories call.<br />]]></description>
          <pubDate>Wed, 08 Aug 2012 12:57:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217360#post2217360</guid>
        </item>
                <item>
          <title>Navigation breaking</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217299#post2217299</link>
          <description><![CDATA[Hi,<br /><br />I'm using some code that I've used before (and it worked) to create my navigation. Within this code, I wanted to exclude any that had 1 in the is_feature field.<br /><br />However, when I put the code in like:<br /><br />&lt;?php foreach ($allIndex_homeRecords as $categoryRecord): ?&gt;<br />				&lt;?php if(!$categoryRecord['is_feature']): ?&gt;<br />                    &lt;?php echo $categoryRecord['_listItemStart']; ?&gt;<br />                        &lt;span &lt;?php if($thisPage == &quot;index&quot;){echo 'class=&quot;currentpage&quot;';} ?&gt;&gt;&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;/span&gt;<br />                    &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt; <br />                &lt;?php endif; ?&gt;<br />            &lt;?php endforeach; ?&gt;<br /><br />It breaks the navigation (please find attached how_nav_is_breaking.png and how_nav_is_breaking_source.html).<br /><br />If i put the code in like:<br /><br />&lt;?php foreach ($allIndex_homeRecords as $categoryRecord): ?&gt;<br />                    &lt;?php echo $categoryRecord['_listItemStart']; ?&gt;<br />                        &lt;span &lt;?php if($thisPage == &quot;index&quot;){echo 'class=&quot;currentpage&quot;';} ?&gt;&gt;&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;/span&gt;<br />                    &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt; <br />            &lt;?php endforeach; ?&gt;<br /><br />The navigation is as it should be (please find attached how_nav_should_be.png and how_nav_should_be_source.html), but the navigation displays the 'features', when it shouldn't.<br /><br />So you can understand more, if you go to: http://jubileehighschool.no-ip.org/curriculum.php?Curriculum-1-1, you will see two blocks on the right (feature and feature2), now if you hover over Curriculum 1 in the nav, you will also see feature and feature 2 there, but I don't want them to be displayed in the nav.<br />]]></description>
          <pubDate>Sun, 05 Aug 2012 15:14:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217299#post2217299</guid>
        </item>
                <item>
          <title>Re: [Jason] Navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2209070#post2209070</link>
          <description><![CDATA[Hi,<br /><br />I've managed to fix this, I forgot to add in the following on the pages that are displaying the catergories:<br /><br />'where'		  =&gt; whereRecordNumberInUrl(1),<br />'limit'		  =&gt; '1', <br /><br />thanks for your help![cool]<br />]]></description>
          <pubDate>Thu, 13 Jan 2011 16:14:42 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2209070#post2209070</guid>
        </item>
                <item>
          <title>Re: [Jason] Navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2209037#post2209037</link>
          <description><![CDATA[Hi,<br /><br />please find navigation attached. I am in the process of putting this on a test site, so will send over a link once it is set up.<br />]]></description>
          <pubDate>Tue, 11 Jan 2011 14:03:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2209037#post2209037</guid>
        </item>
                <item>
          <title>Re: [Jason] Navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208987#post2208987</link>
          <description><![CDATA[Hi,<br /><br />Sorry for the delay in the reply. <br /><br />The navigation displays as it should, however, when i click through to a link on the second nav, the address bar displays the new address, but the page doesn't display the correct content. <br /><br />Please find attached the navigation.php.<br />]]></description>
          <pubDate>Sat, 08 Jan 2011 08:53:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208987#post2208987</guid>
        </item>
                <item>
          <title>Re: [Jason] Navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208168#post2208168</link>
          <description><![CDATA[Hi,<br /><br />The reason that Current Vacencies is hard coded in at the moment is because I haven't added this section in. This will use the getCatergories.<br /><br />The homepage, register with us and contact us use getRecords as these aren't going to have any second navigation. The navigation that uses getCategories will use the second navigation. <br /><br />The reason that the navigation isn't hard coded is so that the main nav names can be changed in the CMS by the user.<br />]]></description>
          <pubDate>Sun, 21 Nov 2010 09:48:05 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208168#post2208168</guid>
        </item>
                <item>
          <title>Re: [chris] Navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208074#post2208074</link>
          <description><![CDATA[Hi,<br /><br />The main navigation problem is a css one, but the problem that I am refereing to is the second nav (where it says test under the main nav).<br /><br />Basically the about us and client enquiry page have a second navigation, but no matter what page I'm on, the second nav is always displaying (even on the homepage where there is no second nav), the about us page second navigation is always overlaying the second nav from the client enquiry page even through they are different second navigations.<br />]]></description>
          <pubDate>Tue, 16 Nov 2010 13:56:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208074#post2208074</guid>
        </item>
                <item>
          <title>Navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208021#post2208021</link>
          <description><![CDATA[Hi,<br /><br />I'm creating a site for a recruitment site. The main navigation works fine, however, the second navigation (when the relevant page is selected) should situate under the main nav, however, any page that has a second navigation displays over the top (please see jpg).<br /><br />Also, please find attached the navigation file as well as the about us page file.<br />]]></description>
          <pubDate>Sun, 14 Nov 2010 05:46:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208021#post2208021</guid>
        </item>
                <item>
          <title>Re: [Damon] Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205784#post2205784</link>
          <description><![CDATA[thank you.<br />]]></description>
          <pubDate>Tue, 03 Aug 2010 14:13:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205784#post2205784</guid>
        </item>
                <item>
          <title>Re: [Jason] Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205718#post2205718</link>
          <description><![CDATA[Hi,<br /><br />Please find attached the latest files (although they haven't changed from the ones attached previously).<br /><br />I'm trying to get the navigation to work like:<br />http://www.gomedia.us/, but the source shows that part of the styles that should show don't.<br />]]></description>
          <pubDate>Wed, 28 Jul 2010 14:52:04 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205718#post2205718</guid>
        </item>
                <item>
          <title>Re: [Jason] Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205695#post2205695</link>
          <description><![CDATA[Hi,<br /><br />the jquery nav in the dev html is using the id=&quot;menu&quot;. there are two ul, ones for the top nav and the other is for the jquery.<br />]]></description>
          <pubDate>Tue, 27 Jul 2010 13:43:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205695#post2205695</guid>
        </item>
                <item>
          <title>Re: [Jason] Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205633#post2205633</link>
          <description><![CDATA[Hi,<br /><br />This site is on my dev server at the moment. I'm hoping to get it up onto a live test server next week. <br /><br />I have attached two html files, DevJqueryNav.html is the source code that is generated when I try to add the jquery accordion into my navigation and liveJqueryNav.html is a live sample of the jquery and how it should be working.<br /><br />I have marked out in the code where the jquery nav starts and ends.<br />]]></description>
          <pubDate>Fri, 23 Jul 2010 14:57:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205633#post2205633</guid>
        </item>
                <item>
          <title>Re: [Donna] Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205556#post2205556</link>
          <description><![CDATA[Hi,<br /><br />please find attached the navigation file, and the associated css and js files.<br />]]></description>
          <pubDate>Tue, 20 Jul 2010 13:02:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205556#post2205556</guid>
        </item>
                <item>
          <title>Re: [Jason] Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205503#post2205503</link>
          <description><![CDATA[Hi,<br /><br />The second navigation now needs to be like an accordion like: http://www.i-marco.nl/weblog/jquery-accordion-menu/.<br /><br />However, when I try and add this into the php, it doesn't work. Are you able to put me in the right direction?<br />]]></description>
          <pubDate>Sat, 17 Jul 2010 08:46:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205503#post2205503</guid>
        </item>
                <item>
          <title>Re: [Jason] Creating a Search page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205427#post2205427</link>
          <description><![CDATA[Hi,<br /><br />The search will be used to search all of the site, so when a user adds a word into the keyword search, a page then appears with the results.<br />]]></description>
          <pubDate>Tue, 13 Jul 2010 13:13:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205427#post2205427</guid>
        </item>
                <item>
          <title>Re: [Jason] Creating a Search page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205366#post2205366</link>
          <description><![CDATA[Hi,<br /><br />This is a search for the whole of the site. I just grabbed one of the pages so that i had the template already.<br />]]></description>
          <pubDate>Mon, 12 Jul 2010 14:23:14 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205366#post2205366</guid>
        </item>
                <item>
          <title>Re: [Jason] Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205365#post2205365</link>
          <description><![CDATA[Hi Thank you.<br /><br />This is working for the KS2 and KS3 but not for Subject List and options.<br /><br />Please find code attached.<br />]]></description>
          <pubDate>Mon, 12 Jul 2010 14:21:56 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205365#post2205365</guid>
        </item>
                <item>
          <title>Creating a Search page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205345#post2205345</link>
          <description><![CDATA[Hi,<br /><br />I've added a search form onto the site and have made it so that when you search for your keywords, it's goes to the search page. However, are you able to help me with the code that searches the table and displays the relevant information?<br /><br />please find attached the code with the search panel and the listview page.<br />]]></description>
          <pubDate>Sun, 11 Jul 2010 09:25:56 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205345#post2205345</guid>
        </item>
                <item>
          <title>Second Navigation active selection</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205344#post2205344</link>
          <description><![CDATA[Hi,<br /><br />I am trying to keep highlighted on the left the section of the site that the user is in.<br /><br />I have got this to work, using the depth, however, this keeps all sections in the same depth when I'm trying to keep just the relevant depth highlighted.<br /><br />Please find attached a screen shot as this is on a development server and also the code.<br />]]></description>
          <pubDate>Sun, 11 Jul 2010 07:52:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205344#post2205344</guid>
        </item>
                <item>
          <title>Re: [Jason] _listItem active state</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204511#post2204511</link>
          <description><![CDATA[Hi,<br /><br />Just to let you know that I've managed to fix this using a couple of spans.<br /><br /> &lt;?php foreach ($allCurriculumRecords as $categoryRecord): ?&gt; <br />				&lt;?php if(!$categoryRecord['featureSelect']) : ?&gt; <br />					&lt;?php echo $categoryRecord['_listItemStart']; ?&gt; <br />                           	&lt;?php if($thisPage==&quot;curriculum&quot;): ?&gt;<br />                            	&lt;span class=&quot;currentpageEnd&quot;&gt;&lt;/span&gt;<br />                                &lt;span class=&quot;currentpage&quot;&gt;&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;/span&gt;<br />                            &lt;?php else: ?&gt; <br />               					&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;<br />                        &lt;?php endif ?&gt;  <br />                    &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt; <br />                &lt;?php endif ?&gt; <br />            &lt;?php endforeach; ?&gt;   <br /><br /><br /><br />span.currentpage a {background:#560a0b url(../images/buttonLeftHover.gif) no-repeat top left; color:#ffffff;}<br />span.currentpageEnd {width:15px; height:38px; position:absolute; right:0; background:#560a0b url(../images/buttonRightHover.gif) no-repeat top right;}<br /><br />Thank you for all your help!!<br />]]></description>
          <pubDate>Tue, 25 May 2010 15:07:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204511#post2204511</guid>
        </item>
                <item>
          <title>Re: [Jason] _listItem active state</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204465#post2204465</link>
          <description><![CDATA[Hi,<br /><br />I've tried adding a class to the a tag under the else tag, however this doesn't make any difference.<br />]]></description>
          <pubDate>Fri, 21 May 2010 16:21:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204465#post2204465</guid>
        </item>
                <item>
          <title>Re: [Jason] _listItem active state</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204423#post2204423</link>
          <description><![CDATA[Hi Sorry,<br /><br />I missed out a line from the code that I updated:<br /><br /> &lt;?php foreach ($allCurriculumRecords as $categoryRecord): ?&gt; <br />				&lt;?php if(!$categoryRecord['featureSelect']) : ?&gt; <br />					&lt;?php echo $categoryRecord['_listItemStart']; ?&gt; <br />                           	&lt;?php if($thisPage==&quot;curriculum&quot;): ?&gt;<br />                                &lt;li class=&quot;currentpage&quot;&gt;&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />                            &lt;?php else: ?&gt; <br />               					&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;<br />                        &lt;?php endif ?&gt;  <br />                    &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt; <br />                &lt;?php endif ?&gt; <br />            &lt;?php endforeach; ?&gt;<br />]]></description>
          <pubDate>Thu, 20 May 2010 14:08:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204423#post2204423</guid>
        </item>
              </channel>
    </rss>
  