Duplicate page view without banner nor footer

Hi there,

I've this page:

sotinco.pt/profissional/produtos/construcao-civil/fachadas

and I've this view:

zeus.paloalto.pt/Site_sotinco/particular/produtos/pasta_view

I need to duplicate this view, and the second view I need to remove the footer and banner,

Can anyone help me please?

thanks

Oh man, tables that contain tables that contain tables that contain tables. That markup appcoach was outdated many years ago already http://vanseodesign.com/css/css-divs-vs-tables/

This is not a Plone problem.

When it comes to 'removing' banner and footer:
The easiest way is to do this with css
for example
body.section-produtos #portal-header{
display: none;
}

Your problem is that the markup is a bit insane, so it does not look like you have an ID to 'hide'.

My opinion:
As gyst said: drop everything 'with tables' (is this a Plone 4 site ?)
Do the items with flex box (unless most of your users have old browsers)
With this approach, it can be used on mobile easily.

I've already know how to remove what I need, $(".visualNoPrint").empty() do the job, I'm trying to do it when a frame open this site bue my javascript it isn't executed on plone site

Already solved this with that jquery:

var isInIframe = (window.location != window.parent.location) ? true : false;

if(isInIframe){

$("document").ready(function(){
$(".top_cont_bar").css("background","none");
$(".visualNoPrint").empty();
$("body").css("background-color","white");
$(".voltar").empty();
$("#voltar_tr").css("border","none");
$('.voltar').parent().prevAll('tr').children('td').css('border','none');
});
}