• Resolved Stephen Souza

    (@noaruhikari)


    Hello,

    I have a question, actually 3.

    1. I’m using the blank theme from your website and was wondering if there’s an easy way, without touching CSS, to change the background color of the theme?

    2. Is there anyway to make the footer appear on the bottom of each page, even if there’s not much content, but without making it fixed to the bottom of the page?

    3. Aside from the Template section within the front page editor, is there a way to designate a default “Page” template upon creation? Without having to go to the extra step of going into the editor and template to initialize a static look. (This may be more of a feature request.)

    I know of the Post Templates, but I feel there should be a Page template maker/section in it as well, but that might be overreaching.

    Kindest Regards & Well Wishes,

    N. H.

    https://www.ads-software.com/plugins/live-composer-page-builder/

Viewing 1 replies (of 1 total)
  • Plugin Author LiveComposer

    (@livecomposer)

    Hi,

    1) Only with a bit of CSS, to be exact:

    body { background: #hexcode; }

    2) Would need a bit of a “hack” to create that, same as with regular themes. Example “hack”. I’ll see about creating one for the blank theme or perhaps have it as an option in LC itself.

    3) With a couple lines of codes “Post Templates” can be applied to any post type, including pages. But in that case the pages will only be powered by the template, so if a page needs to be unique ( as they usually are ) you’d need to create a new “post template” and apply it to the page. But in case you’ll just have 2-3 different variations for pages it would work out.

    Just pop this into the theme’s functions.php

    function lc_add_post_templates_support( $cpt ) {
    
    	$cpt['page'] = 'Pages';
    
    	return $cpt;
    
    } add_filter( 'dslc_post_templates_post_types', 'lc_add_post_templates_support' );

    Regards,
    Slobodan

Viewing 1 replies (of 1 total)
  • The topic ‘Live Composer & Blank Theme’ is closed to new replies.