Hi dragan,
I took a look at your site. The additional table look great.
One thing you will need to do is add the code for the additional tabs to every "if/else". For example, if you select "Submit A Story" or "Contact," you will see that only the standard tabs are on those pages. Additionally, you will need to create statements for each new tab.
Code:
{if $pagename eq "upcoming"}
<li><a href="{$my_base_url}{$my_pligg_base}" class="navbut3"><span>{#PLIGG_Visual_Published_News#}</span></a></li>
<li><a href="{$URL_upcoming}" class="navbut4"><span>{#PLIGG_Visual_Pligg_Queued#} ({$queued})</span></a></li>
<li><a href="{$URL_submit}" class="navbut3"><span>{#PLIGG_Visual_Submit_A_New_Story#}</span></a></li>
<li><a href="http://www.critiquemyart.com/How_To.php" class="navbut3"><span>FAQs & How To's</span></a></li>
<li><a href="http://www.critiquemyart.com/Contest_Page.php" class="navbut3"><span><strong>* CONTESTS *</strong></span></a></li>
So you will need to to change
to
For the tab that your are writing the "if/esle" rule for. This means that if the tab you have added is "Contact," then that line must have
class="navbut4" and all the others must have
class="navbut3". If you look at my sample, you will see this difference.
More questions ??? Post to this thread. Feel free to click that "Thanks" Button if I helped you :-).