footer not showing after using iframe [solved]

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
babel
Forum Members
Forum Members
Posts: 149
Joined: Fri Oct 19, 2012 8:58 pm

footer not showing after using iframe [solved]

Post 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?
Last edited by babel on Mon Dec 01, 2014 1:35 pm, edited 1 time in total.
JohnnyB
Dev Team Member
Dev Team Member
Posts: 731
Joined: Tue Nov 21, 2006 5:05 pm

Re: footer not showing after using ifram

Post 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
"The art of life lies in a constant readjustment to our surroundings." -Okakura Kakuzo

--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
User avatar
velden
Dev Team Member
Dev Team Member
Posts: 3497
Joined: Mon Nov 28, 2011 9:29 am

Re: footer not showing after using ifram

Post by velden »

iframe should be closed with </__iframe> and NOT with self closing tag <__iframe ... />
babel
Forum Members
Forum Members
Posts: 149
Joined: Fri Oct 19, 2012 8:58 pm

Re: footer not showing after using ifram [solved]

Post by babel »

Thanks for your help. The solution was closing with </__iframe>.
staartmees
Power Poster
Power Poster
Posts: 1049
Joined: Wed Mar 19, 2008 4:54 pm

Re: footer not showing after using ifram

Post by staartmees »



Last bumped by babel on Wed Nov 12, 2014 2:37 pm.
Post Reply

Return to “Layout and Design (CSS & HTML)”