Jump to content

Inserting pure HTML and CSS in footer.tpl


vinsbg

Recommended Posts

Hi, 

 

I'm trying to add pure HTML directly in footer.tpl file of the theme but didn't showed in the index(home) page on the site. 

 

This is current footer.tpl file:


{if !isset($content_only) || !$content_only}

						</div><!-- #center_column -->
                        {if isset($left_column_size) && !empty($left_column_size)}
                            <div id="left_column" class="column col-xs-12 col-sm-{$left_column_size|intval}">{$HOOK_LEFT_COLUMN}</div>
                        {/if}
                    </div><!--.large-left-->
                    </div><!--.row-->
					{if isset($right_column_size) && !empty($right_column_size)}
						<div id="right_column" class="col-xs-12 col-sm-{$right_column_size|intval} column">{$HOOK_RIGHT_COLUMN}</div>
					{/if}
					</div><!-- .row -->
				</div><!-- #columns -->
<div class="neshto"> dsdfdsgfdhfdgfdssadfds</div>
                {if isset($HOOK_HOME) && $HOOK_HOME|trim}
                	<div class="home-column">
                        <div class="container">
                            {$HOOK_HOME}
                            
                        </div>
                        
                    </div>


                {/if}

			</div><!-- .columns-container -->

			{if isset($HOOK_FOOTER)}
				<!-- Footer -->

				<div class="footer-container"><div class="footer-container-inner">
					<footer id="footer"  class="container">
						<div class="row">{$HOOK_FOOTER}</div>
					</footer>
				</div></div><!-- #footer -->
			{/if}
            </div>
		</div><!-- #page -->
{/if}

{include file="$tpl_dir./global.tpl"}
	</body>
</html>

I'm trying to insert simple div at the beginning of the file

<div class="test"> Testing </div>

It didn't showed on the page. So how can I insert code directly in the source code.. ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...