[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2010-08-31T20:49:41-07:00 http://integramod.com/forum/feed.php?f=21&t=5704 2010-08-24T23:06:23-07:00 2010-08-24T23:06:23-07:00 http://integramod.com/forum/viewtopic.php?t=5704&p=36768#p36768 <![CDATA[Re: Tabs Nav?]]> Works great!!!

I really appreciate all your hard work on IM3 and your quick response to my questions..
Thanks!!!! <img>

Statistics: Posted Author: Blue-Blood — Tue Aug 24, 2010 11:06 pm


]]>
2010-08-24T02:06:24-07:00 2010-08-24T02:06:24-07:00 http://integramod.com/forum/viewtopic.php?t=5704&p=36755#p36755 <![CDATA[Re: Tabs Nav?]]>
here is an example for the portal page.
in your css file app the portal class like
.portal_tab { whatever css code for not active}

in styles/portal_common/template/portal.html
FIND
<IF>
BEFORE ADD
<style>.portal_tab {whatever css code for active}</style>

this will override the css file and change the action of the tab, but only on portal page.

for forum you will do the same thing but add it to your style/template/index_body.html

You wont be able to do this for chat though because it is a popup

Statistics: Posted Author: Helter — Tue Aug 24, 2010 2:06 am


]]>
2010-08-31T20:49:41-07:00 2010-08-20T10:24:58-07:00 http://integramod.com/forum/viewtopic.php?t=5704&p=36725#p36725 <![CDATA[[SOLVED - THANKS]Tabs Nav?]]> But i was hoping someone could help!!

I have managed to create the tabbed nav but cant figure out how to make each tab selected & deselected.

[attachment=0:ybkrfpb6]123Untitled.gif[/attachment:ybkrfpb6]

All unselected
          <div>             <ul>                 <li><a><span>{L_PORTAL}</span></a></li>                 <li><a><span>{L_INDEX}</span></a></li>                 <li><a><span>Chat</span></a></li>                 <IF><li><a><span>{L_GARAGE}</span></a></li><ENDIF>                 <IF><li><a><span>{L_CALENDAR}</span></a></li><ENDIF>                 <li><a><span>{L_FAQ}</span></a></li>                 <li><a><span>{L_GALLERY}</span></a></li>                 <li><a><span>{L_KNOWLEDGE_BASE}</span></a></li>                 <li><a><span>{L_DOWNLOADS}</span></a></li>                 <IF><li><a><span>{L_MEMBERLIST}</span></a></li><ENDIF>             </ul>         </div>  


on the mcp_header.html
it has <IF>
So i tried

          <div>             <ul>                 <BEGIN>                 <li<IF> class="activetab"<ENDIF>><a><span>{L_PORTAL}</span></a></li>                 <li<IF> class="activetab"<ENDIF>><a><span>{L_INDEX}</span></a></li>                 <li<IF> class="activetab"<ENDIF>><a><span>Chat</span></a></li>                 <IF><li<IF> class="activetab"<ENDIF>><a><span>{L_GARAGE}</span></a></li><ENDIF>                 <IF><li<IF> class="activetab"<ENDIF><a><span>{L_CALENDAR}</span></a></li><ENDIF>                 <li<IF> class="activetab"<ENDIF>><a><span>{L_FAQ}</span></a></li>                 <li<IF> class="activetab"<ENDIF>><a><span>{L_GALLERY}</span></a></li>                 <li<IF> class="activetab"<ENDIF>><a><span>{L_KNOWLEDGE_BASE}</span></a></li>                 <li<IF> class="activetab"<ENDIF>><a><span>{L_DOWNLOADS}</span></a></li>                 <IF><li<IF> class="activetab"<ENDIF>><a><span>{L_MEMBERLIST}</span></a></li><ENDIF>                 <END>             </ul>         </div>  


The result]           <div>             <ul>                                 <li><a><span>{L_PORTAL}</span></a></li>                 <li><a><span>{L_INDEX}</span></a></li>                 <li><a><span>Chat</span></a></li>                 <IF><li><a><span>{L_GARAGE}</span></a></li><ENDIF>                 <IF><li><a><span>{L_CALENDAR}</span></a></li><ENDIF>                 <li><a><span>{L_FAQ}</span></a></li>                 <li><a><span>{L_GALLERY}</span></a></li>                 <li><a><span>{L_KNOWLEDGE_BASE}</span></a></li>                 <li><a><span>{L_DOWNLOADS}</span></a></li>                 <IF><li><a><span>{L_MEMBERLIST}</span></a></li><ENDIF>             </ul>         </div>  [/code]
All tabs are selected!!!


How do i get each tab to be selected !!

Thanks

Statistics: Posted Author: Blue-Blood — Fri Aug 20, 2010 10:24 am


]]>