Dear @gab
The right-click & inspect function of your page is not working so looking at the Code structure isn't possible right now, this page outlines some likely reasons:
https://www.auslogics.com/en/articles/fix-right-click-not-working-on-chrome-and-firefox/
I will try my best to set you in the right direction though :)
We will be using some of the things outlined within Laytheme's Documentation - specifically targeting a certain page:
https://laytheme.com/documentation.html#custom-css-styling
Each page has a unique 'slug' which is typically the same as your URL address for the page. So im assuming yours is:
.slug-stories
With this, CSS applied will only target the 'stories' page.
Next we need the Header and Footer's Class or ID. For the header we have the class:
.lay-nav
& for the Footer we have the ID:
#footer-region
With this info we can say this:
.slug-stories .laynav, #footer-region {
display:none;
}
Saying: -- .slug-stories (stories page) the laynav (navigation) & #footer-region (footer) are to - 'Display:none'
The Custom Code above can be inserted into the Custom CSS area of 'Lay options -Custom CSS & HTML'
[image: 1614377621436-screen-shot-2020-09-14-at-2.51.54-pm-resized.png]
Hope this helps & have a wonderful day :)
Richard