Reply To: FP 1 Text Layout

Homepage Community Forums Aspire Theme Support FP 1 Text Layout Reply To: FP 1 Text Layout

#19168
Wes
Moderator

    @Bruce I just took a look at it with a 23 inch monitor hooked up to my 13 inch MBP laptop and they both look fine on my end.

    Even though there’s no issue showing for me on my end, you could still try removing or commenting out this line in your front-page.php file –

    wp_enqueue_script( 'aspire-script', get_bloginfo( 'stylesheet_directory' ) . '/js/home.js', array( 'jquery' ), '1.0.0' );

    Removing this line removes the automatic space that is added to this widget which is designed to adjust based on screen size as well as keep the widget centered vertically. Once you do this all of that spacing will be gone from this widget area. You could replace it with a fixed padding by adding something like this to your css –

    .front-page-1 .flexible-widgets {
        padding: 300px 0 300px;
    }

    I don’t have access to a 30 inch monitor so I have no way in knowing what your site will look like with this suggestion. That means you’ll have to make some customizations on your end to get your CSS to look how you want. You’ll also need to add some overrides for your Responsive CSS so the padding adjusts when being viewed on a smaller screen.

    Hope this helps.