Then you need to download the file Full width.php In your WordPress theme folder with.

You have successfully created and loaded a custom full-width page template for your theme. The next step is to use this template to create a full sized page.

Go to your dashboard and edit or create a new page.

On the page edit screen, locate the Page Attributes checkbox and click the drop-down menu under the Model option.

You will be able to see your model. Go ahead, select it and save or refresh the page.

You can now visit your website and you will see the sidebars are gone and your page is displayed as a single column page. It may not be complete yet, but you are now ready to distribute it differently.

Make your site popular by discovering

You will need to use the Inspect tool to discover the CSS classes your theme uses to define the scope of your content.

Then you can adjust its width to 100% using CSS. We used the following CSS code:

.p-template full width zone.content (width: 100%; margin: 0px; border: 0px; padding: 0px;) .page-template full width.Output (margins: 0px;)

This is what Twenty Seventeen would look like.

That's all for this tutorial, I hope it allows you to create full sized pages.

The above methods are free for anyone who can afford and want to quickly create full-width or full-width layouts.

Also discover some premium WordPress plugins

You can use other WordPress plugins to give a modern look and optimize the management of your blog or website.

We bring you several premium WordPress plugins to help you do just that.

1. Divi Builder

Divi Builder is a high quality page builder that is highly regarded Elegant Themes Although it is commonly used as part of the WordPress Divi theme, Divi Builder is also a standalone plugin that can be used in other WordPress themes.

Divi Builder allows you to edit your content using a visual front-end as well as a server-side front-end, although most users prefer the former.

Basically, instead of sidebars, everything is in popups and floating buttons. It gives you access to 316 predefined templates distributed across 40 different presentation packages, and also allows you to save your own designs as templates.

We invite you to discover

One of Divi's features has always been the control over the styles it gives you. On three different tabs, you can tweak various settings, including responsive controls, custom spacing, and more.

You can even add custom CSS because its CSS editor combines basic validation and autocomplete.One criticism of Divi Builder has always been that it is based on, which means that if you disable it once, it will leave a bunch of shortcodes in your content. While this is a bit depressing, there are now fewer problems with plugins like Shortcode Cleaner.

2. Builder

Unsurprisingly, Themify Builder is a proposal from the Themify team. He integrates it into many of his WordPress themes to provide customers with easy customization options. But you can also buy it as a standalone plugin and use it with any WordPress theme.

Like Divi Builder and WPBakery Page Builder, Themify Builder lets you create layouts in the frontend or backend.Another good thing is this plugin allows you to customize your responsive breakpoints (but only at the site-wide level).

Discover create an online store and sell your products online easily

An interesting feature of Themify Builder is that it still allows you to use the standard WordPress editor, while other page builders force you to use the Page Builder interface for everything.

3. Fakir

Originally launched in 2016, the WordPress Elementor plugin is one of the youngest developers on this list. Despite its late launch, Elementor has quickly amassed over 1,000,000 active installations on WordPress.org, making it one of the most popular WordPress builders out there.

If you have any suggestions or comments, leave them in our section

WordPress is a fantastic blogging tool, but unfortunately not perfect. Even after many updates and hundreds of new features, some basic user interface improvements are still needed for the usability.

I've been writing a lot of long list articles lately and in the process I discovered a problem with the built-in visual post editor in WordPress that I didn't know about before, or it didn't really bother me before.

In this quick tutorial, I'll show you how to change the width of the main text column in the visual WordPress post editor.

Problem

When creating large posts (mostly with pictures), I often had to save and preview the post to make sure the list was formatted correctly. In addition, I often had to write text directly on my image, because the size of the editor window is almost one and a half times larger than any of my images (as well as the main content block on my site):

Solution

The solution is relatively simple, but you need to know how to implement it. First, you need to find out the current width of the content block on your site. In my case, my blog's block width is 650px.

Then you will need to open your file functions.php and add the following code at the bottom of the file:

Function fb_change_mce_buttons ($ initArray) ($ initArray ["width"] = "650px"; return $ initArray;) add_filter ("tiny_mce_before_init", "fb_change_mce_buttons");

Result

As a result, you will see a post editor that matches the width of your content block on the site itself. This way, you can be sure that when you create an entry through the admin console, it will look as close as possible to the final result.

Remember that some screen resolutions will change your settings and, for example, will only show one column - this will depend on the width of your content.