Viewing 15 replies - 1 through 15 (of 17 total)
  • Hi @acranium,
    Try to take off this margins:

    @media screen and (min-width: 56.875em)
        .no-sidebar .entry-content {
        margin-right: 15%;
        margin-left: 15%;
    }
    Thread Starter acranium

    (@acranium)

    I did as you said. Changes not. Just at the top of the site name and menu. It would want that plugin earned. Folder twentysixteen-child I need to download the catalog theme?

    Hi @acranium,

    Let’s try this:

    .page-template-full-width .entry-content {
        margin-left: 0;
        margin-right: 0;
    }

    This is the CSS that’s needed for the TwentySixteen child theme.

    .page-template-full-width.elementor-page .full-width {
    	width: 100%;
    }
    
    .page-template-full-width.elementor-page .site-inner {
            max-width: 100%;
    }
    
    .page-template-full-width.elementor-page header#masthead,
    .page-template-full-width.elementor-page footer#colophon {
    	margin: 0 auto;
    	max-width: 1348px;
    }
    
    .page-template-full-width.elementor-page .site-content {
            padding: 0;
    }
    
    .page-template-full-width.elementor-page .entry-header,
    .page-template-full-width.elementor-page .entry-footer {
            display: none;
    }
    
    .page-template-full-width.elementor-page .entry-content {
            max-width: 100%;
    	margin-right: 0;
            margin-left: 0;
    	overflow: hidden;
    }

    You also need to remove both the “page-templates” and “template-parts” folders from the theme and let it use the default ones from the parent theme. I’d suggest making a copy to create your own child theme thus preserving your changes.

    Thread Starter acranium

    (@acranium)

    WOW! Super! Here’s what happened.



    I added this to the CSS ../wp-content/themes/twentysixteen-child/style.css

    Everything worked out. I am very happy. Last question. How can I remove the red areas in the image?

    Do I understand correctly that the”page-templates” and “template-parts” folder you just need to remove? I deleted it, but nothing changed.

    Now folders are ../wp-content/themes/twentysixteen-child

    Do I understand correctly that the”page-templates” and “template-parts” folder you just need to remove? I deleted it, but nothing changed.

    That is the correct behaviour – basically the default fullwidth template in the parent theme is being used in conjunction with the above css rules.
    ***But I think I may have my wires crossed on that*** rechecking!

    How can I remove the red areas in the image?

    Not come across that issue. If you can provide a link we can take a look and hopefully offer a solution πŸ™‚

    OK, apologies on the folders – should not be deleted!

    Sorry, had one of my custom template plugin active when I did the initial test. Failed to realise the template was being pulled from the plugin and not the parent theme.

    Thread Starter acranium

    (@acranium)

    That can be resolved with the following two steps.

    a) Set the background color to white via Custimizer >> Colors – and
    b) Add the following css to the child theme’s style.css

    .page-template-full-width.elementor-page .site {
          margin: 0;
          padding: 0;
    }

    The above css is for the Elementor pages only. For site wide then use

    .site {
          margin: 0;
          padding: 0;
    }

    Thread Starter acranium

    (@acranium)

    I apologize for my stupidity. I communicate through a translator. Very hard. I probably did not ask right. I’d like that would not have seen the name of the site and its menu (GEONIS, ΠŸΡ€ΠΈΠ²Π΅Ρ‚ ΠΌΠΈΡ€). Please, please, click on the link at the bottom is also a piece of the standard theme. How you can get rid of it?
    that would Elementor lementator was on the screen.

    No problem.

    I’ve submitted a plugin to be reviewed for inclussion in the repository here. It addresses the issue by adding a blank template.

    Not sure if the forum moderators will allow for the GitHub repo link to be posted here?

    Search for “Elementor Templater” on GitHub and you’ll find it πŸ™‚

    Thread Starter acranium

    (@acranium)

    Dear WPDevHQ!
    With Elementor myself construct their page. I do not like very much, it’s great.
    But how can I remove the standard cap threads twentysixteen-child GEONIS name. Raise that is specified by red arrows upside.
    http://s019.radikal.ru/i639/1608/32/88fe45ef0cf3.jpg
    http://acrani0z.bget.ru/%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80/
    I only need it!

    Thread Starter acranium

    (@acranium)

    To remove the header and footer with just css then in the above given code change this…

    .page-template-full-width.elementor-page header#masthead,
    .page-template-full-width.elementor-page footer#colophon {
        margin: 0 auto;
        max-width: 1348px;
    }

    To

    .page-template-full-width.elementor-page header#masthead,
    .page-template-full-width.elementor-page footer#colophon {
        display: none;
    }

    Just remember that this will be applied to all Elementor pages using the full width template.

    Thread Starter acranium

    (@acranium)

    Super!!! Thank you very much!!! Everything worked out. You are super! Long years of good health to you!

Viewing 15 replies - 1 through 15 (of 17 total)

The topic ‘Not Full page’ is closed to new replies.