php - How do I make this wordpress theme full width?

770

I tried my best but I couldn't make the following theme full width/screen by editing the CSS. I'd be very much grateful if you could show me or give me a hint regarding this customization.

http://envirra.com/themes/blackmag/?cat=4

the theme itself has an option for full with and posts without sidebar, but it only displays the header and slider with full width, all the rest, the blog and footer is still boxed

984

Answer

Solution:

  • To create a new page layout you need to access your theme files and open up and edit page.php.
  • create a template with full-width.php.
  • Select a page template in admin page section.

For more information refer following link:

https://premium.wpmudev.org/blog/create-full-width-page/

571

Answer

Solution:

Add this css.

    @media (min-width: 1200px){
        .category  .container {
            width: 100%;
        }
    }

People are also looking for solutions to the problem: How to insert more than 1000 rows to Postgresql using PHP

Source

Didn't find the answer?

Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.

Ask a Question

Write quick answer

Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.

Similar questions

Find the answer in similar questions on our website.