Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #40031
    Thomas Norman
    Guest

    Currently, I am limited to a frame that excludes almost any short codes I try to embed for better presentation of the relatively limited theme. I am trying to better present blog content with some grid variants, but these are becoming corrupted due to the narrow space forced on all pages – what is the solution?

    #40037
    Jesse Owens
    Keymaster

    Hi Thomas-

    Thanks for the great question, and thanks for using the Crio WordPress theme.

    You can change your blog page to be full-width by navigating to Customize > Design > Blog > Blog Page > Post List Settings. Here, you’ll find a control to change the Container from Contained to Full-Width.

    Check out detailed instructions on your Post List Settings in this article.

    #40038
    Thomas Norman
    Guest

    I’m afraid I have none of those options on Haven, but that would be incredibly intuitive if so. 🙁 I’ll look at the stylesheet for some options which can be provided in particular instances.

    #40040
    Jesse Owens
    Keymaster

    Ah, forgive me I thought you were on our newest theme, Crio!

    Using Haven, you may have better luck using the Post List Widget on a normal page, rather than using the built-in blog page. Check out this short video where I go over post lists:

    However, it is possible to enable a full-width blog page in Haven, but it does take a little bit of custom coding.

    The easiest way to add a little custom code is with a plugin called Code Snippets. If you don’t already have it, install and activate that plugin.

    Then go to Snippets > Add New and paste this into your new snippet. I recommend using the setting to Only Run Once the first time you try any new snippet, and if your site does not crash you are safe to activate it everywhere.

    add_filter('boldgrid_theme_framework_config', function( $configs ) {
    	$configs['template']['pages']['blog'] = 'container-fluid';
    	return $configs;
    });
    

    You can read up about what configuration options are available in our Theme Docs.

    Our newest theme, Crio, is designed to give you full control over all of these configuration options without any coding.

    #40043
    Thomas Norman
    Guest

    Thanks a lot, I’ll experiment with that on a demo site I have setup; I need it to only be inclusive of particular pages. As for the new theme alternative, I would need to figure how to do a smooth transition with all the aesthetics intact (which I absolutely adore, reviewed so many options before committing) – I’m thinking it would save considerable time/frustration.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Changing width of pages for blog?’ is closed to new replies.