Contentteller

Contentteller Support Forums
Home Forums > Contentteller > Version 1.x >

Integrate Storyteller CMS skin into forum.

Discussion in 'Version 1.x' started by t3chb0y, Jun 29, 2006.

  1. t3chb0y Guest

    Integrate Storyteller CMS skin into forum.

    How do we integrate the Story teller CMS into the forum like for example

    --CMS Header--

    Forum Content

    --CMS Footer--

    and btw how do u edit the menus?
    t3chb0y, Jun 29, 2006
    #1
  2. Philipp Guest

    Integrate Storyteller CMS skin into forum.

    Which forum are you using?

    You can change the menu by editing the site_header template.
    Philipp, Jun 29, 2006
    #2
  3. t3chb0y Guest

    Integrate Storyteller CMS skin into forum.

    I'm using IPB 2.0
    t3chb0y, Jun 30, 2006
    #3
  4. Philipp Guest

    Integrate Storyteller CMS skin into forum.

    To change the site_header/site_footer in IPB:
    Skins & Templates => Skin Manager => IBP Default Skin => Edit Root Skin Board Header & Footer Wrapper

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head> 
    <title><% TITLE %></title>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> 
    <% GENERATOR %> 
    <% CSS %> 
    <% JAVASCRIPT %> 
    </head> 
    <body>
    
    *** Add the content of the template site_header here ***
    
    <div id="ipbwrapper">
    <% BOARD HEADER %>
    <% MEMBER BAR %>
    <% NAVIGATION %>
    <!--IBF.NEWPMBOX-->
    <% BOARD %>
    <% BOARD FOOTER %>
    <% STATS %> 
    <% COPYRIGHT %>
    </div>
    
    *** Add the content of the template site_footer here ***
    
    </body> 
    </html>
    Philipp, Jul 1, 2006
    #4
  5. t3chb0y Guest

    Integrate Storyteller CMS skin into forum.

    is there a specific code that we must use on the header and footer to include the CMS skin?
    t3chb0y, Jul 1, 2006
    #5
  6. Philipp Guest

    Integrate Storyteller CMS skin into forum.

    No, expect you may need to adjust the link path. For example, if your CMS installation is in the root directory and your forum in the /forums directory, you need to add ../ to the path of each link in the template.

    Here an example how a modified IPB wrapper will look likes:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <title><% TITLE %></title> 
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> 
    <% GENERATOR %> 
    <% CSS %> 
    <% java script  %> 
    </head> 
    <body text="#000000" vlink="#004365" alink="#004365" link="#004365" bgcolor="#ffffff" leftmargin="0" topmargin="5" rightmargin="0">
    
    <br />
    <br />
    <table cellspacing="0" cellpadding="3" width="90%" align="center" bgcolor="#365582" border="0">
    	<tr>
    		<td>
    		<table cellspacing="0" cellpadding="1" width="100%" bgcolor="#365582" border="0">
    			<tr>
    				<td>
    				<table cellspacing="0" cellpadding="2" width="100%" bgcolor="#365582" border="0">
    					<tr>
    						<td>
    						<img src="../images/logo.png" alt="Esselbach Storyteller CMS System" border="0" /></a>
    						</td>
    					</tr>
    				</table>
    				</td>
    			</tr>
    		</table>
    		</td>
    	</tr>
    	<tr bgcolor="#000000">
    		<td bgcolor="#6883a9" colspan="2">
    		<font face="Arial" color="#ffffff" size="2"><b>STORYTELLER CMS SYSTEM</b></font></td>
    	</tr>
    	<tr>
    		<td valign="top" width="100%" bgcolor="#dadfed"> 
    		<table cellspacing="0" cellpadding="2" width="100%" border="0">
    			<tr>
    				<td valign="top" width="160" bgcolor="#dadfed">
    				<table cellspacing="0" cellpadding="0" width="160" bgcolor="#000000" border="0">
    					<tr>
    						<td>
    						<table cellspacing="1" cellpadding="3" width="100%" border="0">
    							<tr>
    								<td bgcolor="#6b85aa">
    								<font face="Arial" color="#ffffff" size="2"><b>Main Menu</b></font></td>
    							</tr>
    							<tr>
    								<td bgcolor="#ffffff"><font size="2">
    								<li><a href="../index.php">Home Page</a><br /></li>
    								<li><a href="../category.php">News Categories</a><br /></li>
    								<li><a href="../archive.php">News Archive</a><br /></li>
    								<li><a href="../mailinglist.php">Mailing List</a><br /></li>								
    								<li><a href="../comments.php">Comments</a><br /></li>								
    								<li><a href="../review.php">Reviews</a></li>
    								<li><a href="../faq.php">FAQ</a><br /></li>
    								<li><a href="../poll.php">Polls</a></li>
    								<li><a href="../download.php">Downloads</a></li>
    								<li><a href="../glossary.php">Glossary</a></li>
    								<li><a href="../link.php">Web Links</a><br /></li>
    								<li><a href="../search.php">Search</a></li>
    								<li><a href="../ticket.php">Trouble Ticket</a></li>
    								<li><a href="../submitstory.php">Submit News</a></li>
    								<li><a href="../submitdownload.php">Submit File</a></li>
    								<li><a href="../page.php">Pages</a></li>
    								<li><a href="../plan.php">Plans</a></li>
    								</font></td>
    							</tr>
    						</table>
    						</td>
    					</tr>
    				</table>
    				<br />
    				<table cellspacing="0" cellpadding="0" width="160" bgcolor="#000000" border="0">
    					<tr>
    						<td>
    						<table cellspacing="1" cellpadding="3" width="100%" border="0">
    							<tr>
    								<td bgcolor="#6b85aa">
    								<font face="Arial" color="#ffffff" size="2"><b>User</b></font></td>
    							</tr>
    							<tr>
    								<td bgcolor="#ffffff"><font size="2">
    								<li><a href="../register.php">Register</a><br /></li>
    								<li><a href="../login.php">Login</a><br /></li>
    								<li><a href="../logout.php">Logout</a><br /></li>
    								<li><a href="../upanel.php">Control Panel</a><br /></li>
    								<li><a href="../pm.php">Private Messages</a><br /></li>
    								</font></td>
    							</tr>
    						</table>
    						</td>
    					</tr>
    				</table>
    				<br />
    				<table cellspacing="0" cellpadding="0" width="160" bgcolor="#000000" border="0">
    					<tr>
    						<td>
    						<table cellspacing="1" cellpadding="3" width="100%" border="0">
    							<tr>
    								<td bgcolor="#6b85aa">
    								<font face="Arial" color="#ffffff" size="2"><b>News Feeds</b></font></td>
    							</tr>
    							<tr>
    								<td bgcolor="#ffffff"><font size="2">
    								<li><a href="../mobile.php">Handheld/PDA</a><br /></li>
    								<li><a href="../backend.php?action=help">XML News Feeds</a><br /></li>
    								<li><a href="../sidebar.php" target="_blank">View Sidebar</a><br /></li>			
    								</font></td>
    							</tr>
    						</table>
    						</td>
    					</tr>
    				</table>	
    		
    			</td>
    			<td>  </td>
    			<td valign="top" width="85%">
    
    <div id="ipbwrapper"> 
    <% BOARD HEADER %> 
    <% MEMBER BAR %> 
    <% NAVIGATION %> 
    <!--IBF.NEWPMBOX--> 
    <% BOARD %> 
    <% BOARD FOOTER %> 
    <% STATS %> 
    <% COPYRIGHT %> 
    </div> 
    
    			</td></table>
    		</td>
    	</tr>
    	<tr bgcolor="#000000">
    	</tr>
    	<tr bgcolor="#000000">
    		<td bgcolor="#365582" colspan="1">						
    		</td>
    	</tr>
    	<tr>
    	</tr>
    	<tr>
    	</tr>
    </table>
    <br />
    <br />
    
    </body> 
    </html>
    Philipp, Jul 1, 2006
    #6
  7. t3chb0y Guest

    Integrate Storyteller CMS skin into forum.

    thanks for the help...
    t3chb0y, Jul 2, 2006
    #7
Tweet
Facebook:
Forgot your password?
Contentteller Support Forums
Home Forums > Contentteller > Version 1.x >
  • Home
  • Forums

    Forums

    Quick Links
    • Search Forums
    • What's New?
  • Members

    Members

    Quick Links
    • Registered Members
    • Current Visitors
    • Recent Activity
  • Help

    Help

    Quick Links
    • Smilies
    • BB Codes
    • Trophies

Separate names with a comma.

Advanced search...
    Forum software by XenForo™ ©2011 XenForo Ltd.