View Single Post
  #47 (permalink)  
Old 02-20-2008, 08:23 PM
pharcyded pharcyded is offline
New Pligger
 
Join Date: Feb 2008
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
I am using 9.9.0 too and have no idea how to tweak my code in order to get it to run adsense the way I want. Here is my code:

Code:
						{config_load file="/languages/lang_".$pligg_language.".conf"}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

	<head>
		{include file="meta.tpl"}
	
	<link rel="stylesheet" type="text/css" href="{$my_pligg_base}/templates/{$the_template}/css/main.css" media="screen" />
    <link rel="stylesheet" type="text/css" href="{$my_pligg_base}/templates/{$the_template}/css/newhorizon.css" media="screen" />

	{checkActionsTpl location="tpl_pligg_pre_title_thickbox"}
	
	{checkForCss}
	{checkForJs}		
	
	{checkActionsTpl location="tpl_pligg_pre_title_lightbox"}

	{if $pagename neq "published" && $pagename neq "upcoming"}
		{if $Spell_Checker eq 1}			
		<script src="{$my_pligg_base}/3rdparty/speller/spellChecker.js" type="text/javascript"></script>
		{literal}
		<script language="javascript" type="text/javascript">
			function openSpellChecker(commentarea) {
				var txt = document.getElementById(commentarea);
				var speller = new spellChecker( txt );
				speller.openChecker();
			}
		</script>
		{/literal}
		{/if}
	{/if}	

	{if $pagename eq "story"}
		{literal}
			<style type="text/css">
			  /* allow room for 3 columns */
			  div#idwhovotedwrapper ol {width: 35em; list-style-type: none; }
			  div#idwhovotedwrapper ol li {float: left; width: 10em; }
			  div#idwhovotedwrapper br { clear: left; }
			  div#idwhovotedwrapper div.whovotedwrapper { margin-bottom: 1em; }
			</style>
		{/literal}
	{/if}	
	
	<title>{if isset($pretitle)}{$pretitle}{/if}{#PLIGG_Visual_Name#}{if isset($posttitle)}{$posttitle}{/if}</title>
	<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="{$my_base_url}{$my_pligg_base}/rss.php"/>
	<link rel="icon" href="{$my_pligg_base}/favicon.ico" type="image/x-icon"/>	
</head>

	<body {$body_args}>
	
	<!-- header starts here -->
				{include file=$tpl_header.".tpl"}

				
	<!-- content-wrap starts here -->
	<div id="content-wrap"><div id="content">	 
		<div id="sidebar" >	
				<div class="sep"></div>
                {if $pagename neq "editor"}{include file=$tpl_right_sidebar.".tpl"}{/if}
		</div>
        
        <div id="main">		
					{checkActionsTpl location="tpl_pligg_above_center"}
					{include file=$tpl_center.".tpl"}
					{checkActionsTpl location="tpl_pligg_below_center"}	
        </div>
	
	<!-- content-wrap ends here -->		
	</div></div>
	<div id="footer-wrap">
		{include file=$tpl_footer.".tpl"}
		<script src="{$my_pligg_base}/js/xmlhttp.php" type="text/javascript"></script>
		<script src="{$my_pligg_base}/js/jspath.php" type="text/javascript"></script>
	</div>	
            
	</body>
</html>

Anybody know what to do?
Reply With Quote