<?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%3Asolar_sys</link>
        <description></description>
        <pubDate>Thu, 23 Apr 2026 01:10:18 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Asolar_sys&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [solar_sys] Active menu, and submenu</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195528#post2195528</link>
          <description><![CDATA[Dave - thank you for the sample code - it was really helpful! :)<br />]]></description>
          <pubDate>Thu, 29 Jan 2009 19:26:36 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195528#post2195528</guid>
        </item>
                <item>
          <title>Re: [solar_sys] Active menu, and submenu</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195527#post2195527</link>
          <description><![CDATA[One thing, that annoys me is the endless amount of whitespace characters in the source from browser view and that the code generator uses spaces instead of tabs. My index.php is nicely tab'ed and very correct, but in the view source the code is flooded with white space.<br />]]></description>
          <pubDate>Thu, 29 Jan 2009 19:16:14 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195527#post2195527</guid>
        </item>
                <item>
          <title>Re: [solar_sys] Active menu, and submenu</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195526#post2195526</link>
          <description><![CDATA[					&lt;?php if (!$categoryRecord['depth'] &amp;&amp; !$categoryRecord['_isSelected'] &amp;&amp; !$isChildSelected &amp;&amp; $categoryRecord['suuna_lehele'] != 0): ?&gt;<br />						&lt;a href=&quot;&lt;?php echo 'index.php?'.$categoryRecord['suuna_lehele'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;br /&gt;<br />					&lt;?php endif; ?&gt;<br />					<br />					&lt;?php if (!$categoryRecord['depth'] &amp;&amp; !$categoryRecord['_isSelected'] &amp;&amp; !$isChildSelected &amp;&amp; !$categoryRecord['suuna_lehele']): ?&gt;<br />						&lt;a href=&quot;&lt;?php echo 'index.php?'.$categoryRecord['num'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;br /&gt;<br />					&lt;?php endif; ?&gt;<br /><br />Got it working like this! :)<br />]]></description>
          <pubDate>Thu, 29 Jan 2009 19:13:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195526#post2195526</guid>
        </item>
                <item>
          <title>Re: [Dave] Active menu, and submenu</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195525#post2195525</link>
          <description><![CDATA[That's good. It worked. There is one more thing I would like to get working. It is shortcuting - i have made a structure category section in admin. It has a list like this.... SELECT num, name FROM cms_lehe_ylesehitus ....  with number and name. I have the same menu but i would like it to act so that when I choose a page from the list of my meny structure then it forwards a page to the second level page... it helps to avoid empty pages in the first level, instead it links the first level page to second level page.<br />]]></description>
          <pubDate>Thu, 29 Jan 2009 17:33:16 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195525#post2195525</guid>
        </item>
                <item>
          <title>Re: [sagentic] Active menu, and submenu</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195502#post2195502</link>
          <description><![CDATA[First level;<br /><br />&lt;?php foreach ($lehe_ylesehitusRecords as $categoryRecord): ?&gt;<br /><br />	&lt;?php if (!$categoryRecord['depth'] &amp;&amp; $categoryRecord['_isSelected']): ?&gt;<br />		&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;font color=&quot;#4D0267&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;<br />	&lt;?php endif; ?&gt;					<br />	<br />	&lt;?php if (!$categoryRecord['depth'] &amp;&amp; !$categoryRecord['_isSelected']): ?&gt;<br />		&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;br /&gt;<br />	&lt;?php endif; ?&gt;<br /><br />&lt;?php endforeach; ?&gt;<br /><br />Second level, is in another place;<br /><br />&lt;?php foreach ($lehe_ylesehitusRecords as $categoryRecord): ?&gt;<br /><br />	&lt;?php if ($categoryRecord['_isSelected'] &amp;&amp; $categoryRecord['depth']): ?&gt;<br />		&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;font color=&quot;#4D0267&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;<br />	&lt;?php endif; ?&gt;					<br />	<br />	&lt;?php if (!$categoryRecord['_isSelected'] &amp;&amp; $categoryRecord['depth']): ?&gt;<br />		&lt;a href=&quot;&lt;?php echo $categoryRecord['_link'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;br /&gt;		<br />	&lt;?php endif; ?&gt;      <br /><br />&lt;?php endforeach; ?&gt;<br /><br />The second level menu is in the first level category. I would like the first level menu text to be marked as active when the second level menu is selected from this category.<br />]]></description>
          <pubDate>Thu, 29 Jan 2009 10:21:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195502#post2195502</guid>
        </item>
                <item>
          <title>Active menu, and submenu</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195498#post2195498</link>
          <description><![CDATA[How could I make it so that when I have.. let's say 2-3 level menu and have chosen from the website a link from second menu level. <br /><br />I would like the first level link to be active (eg bold) as well as the second level link from the selected ones.<br /><br />Thank you,<br />Martin<br />]]></description>
          <pubDate>Thu, 29 Jan 2009 06:41:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195498#post2195498</guid>
        </item>
              </channel>
    </rss>
  