Page 1 of 1

footer not showing after using iframe [solved]

Posted: Thu Feb 13, 2014 7:03 pm
by babel
Since I've a iframe the footer is disappeared. The template is

Code: Select all

{process_pagedata}<!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" >
<head>
<title>Webshop voor de buitensporter in Utrecht</title>
{metadata}
{cms_stylesheet}
    <__script__ type="text/javascript" src="scripts/jquery-1.10.2.min.js"></__script>
    <__script__ type="text/javascript" src="scripts/jquery-ui-1.10.3.custom.min.js"></__script>
<__script__ type="text/javascript" src="scripts/jquery.cycle.all.min.js"></__script> 
    <__script__ type="text/javascript" src="scripts/scripts.js"></__script> 
</head>
</__body>

<div class="header">
<img class="bg_kaart" src="images/topokaart.png" alt="achtergrond topografische kaart" />
<div class="logo"><a href="#"><img src="images/logo.png" alt="logo slee buitensport" /></a></div>
{global_content name='banner'}
{menu template="navigatie"}

</div>

<div class="main_shop">
{webshop}
{content}

</div>

<div class="footer">
{global_content name='footer'}
</div>

<__body>
</__html>
The iframe is

Code: Select all

{webshop}
and it's a user defined tag. http://www.slee-buitensport.nl/webshop/ ... nkelen.nl/ is the page where this is all about.

Does anyone have a clue why the iframe makes the footer disappear?

Re: footer not showing after using ifram

Posted: Thu Feb 13, 2014 7:18 pm
by JohnnyB
There's some kind of tag or html error.

Source of the website shows this...

Code: Select all

<div class="main_shop">
    <__iframe src="http://slee-buitensport.uitwinkelen.nl/" />
    }
I don't see a closing iframe tag and there is an orphaned closing bracket

Re: footer not showing after using ifram

Posted: Thu Feb 13, 2014 7:55 pm
by velden
iframe should be closed with </__iframe> and NOT with self closing tag <__iframe ... />

Re: footer not showing after using ifram [solved]

Posted: Fri Feb 14, 2014 9:30 am
by babel
Thanks for your help. The solution was closing with </__iframe>.

Re: footer not showing after using ifram

Posted: Wed Nov 12, 2014 2:37 pm
by staartmees