• Hi,

    I love this plugin. I’ve used the free version for a few months, and just recently upgraded to the paid version so that I could use one of the layouts for my front page. Unfortunately, when I made it live this afternoon, it doesn’t look right.

    Sections that are supposed to be divided into two or three are stacked, and the text goes to the edges of the screen, among other problems.

    Here’s how it’s supposed to look: https://candlebreak.com/books/draft-home-page/

    Here’s how it currently looks: https://candlebreak.com/

    I’ve tried changing themes (from Elegant Grunge to Twenty Eleven to Twenty Thirteen), and, while they change the way the page looks (sometimes the image is on the left, sometimes on the right, etc), the page still looks terrible.

    I’ve also turned off every other plugin, but that didn’t fix it.

    I really appreciate your help. Thanks!

    https://www.ads-software.com/plugins/parallax-gravity-landing-page-builder/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Taupas

    (@taupas)

    Just posting the solution I eventually worked out, in case it helps anyone else.

    I created a blank wordpress page template (blank as in no sidebar, header or footer), and added the plugin shortcode to that.

    Here’s the code I used for the blank page:

    <?php
    /**
    * Template Name: Blank Page
    *
    */
    ?>
    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />

    <!– page title, displayed in your browser bar –>
    <title><?php bloginfo(‘name’); ?> | <?php is_home() ? bloginfo(‘description’) : wp_title(”); ?></title>

    <!– add feeds, pingback and stuff–>
    <link rel=”profile” href=”https://gmpg.org/xfn/11&#8243; />
    <?php wp_head(); ?>
    </head>

    <body id=”top”>

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    <?php the_content(); ?>
    <?php endwhile; ?>
    <?php endif; ?>
    </div>
    <?php wp_footer(); ?>
    </body>
    </html>

    Thread Starter Taupas

    (@taupas)

    Sorry, accidental post.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Landing page is broken when set as home page’ is closed to new replies.