Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter Johnjohn1963

    (@johnjohn1963)

    It′s only in Firefox it happen. In Chrome it′s as usual. But I and many with me use Firefox.

    The problem is with this CSS rule in the theme’s stylesheet:

    
    /**
     * BATA TEST
     * Sidebar equal height from CSS
     * When $raindrops_add_inline_style_for_sidebars = false ( lib/vars.php )
     */
    .rd-css-equal-height .lsidebar,
    .rd-css-equal-height .rsidebar{
        margin-bottom: -99999px;
        padding-bottom: 99999px;
    }
    

    It looks like it is trying to keep the sidebars the same height. Don’t know why it only affects Firefox and not Chrome.

    You can temporarily fix it by adding this rule to the theme’s Custom CSS option (Appearance → Customizer → Advanced → Site-wide CSS):

    
    .rd-css-equal-height .lsidebar,
    .rd-css-equal-height .rsidebar{
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    Thread Starter Johnjohn1963

    (@johnjohn1963)

    Unfortunately I can′t any programming, I have a one click installation. I think the team behind the theme should ake that, I have another site with Raindrops who I not have updated the theme and that site looks good in Firefox! https://www.johnjonasson.com Same server and webhotel as fotobloggarna.se

    So you can’t access any of the theme options? That’s unusual. How did you set the header image?

    Thread Starter Johnjohn1963

    (@johnjohn1963)

    It′s options in the theme to customise everything with a simple click, for example is there just a button to upload header image and even upload several and randomise them.

    Theme Author nobita

    (@nobita)

    Hi

    In 1.423 update, we changed the equal height setting of the side bar from javascript to CSS.
    Maybe, this was causing the problem.

    Hotfix

    open functions.php

    
    <?php
    $raindrops_add_inline_style_for_sidebars = true;// ADD ONLY THIS LINE
    /**
     *
     *
     * @package Raindrops
     * @since Raindrops 0.1
     */
    if ( !defined( 'ABSPATH' ) ) {
    	exit;
    }
    do_action( 'raindrops_before' );
    

    Thank you.

    When you return to normal in this, please post result.
    As soon as possible to update.

    • This reply was modified 8 years, 6 months ago by nobita.
    Theme Author nobita

    (@nobita)

    raindrops 1.424 is now live

    I just upgraded to the 1.424 version and it appears to have fixed the problem.

    Theme Author nobita

    (@nobita)

    @crouchingbruin
    Thank you!

    Thread Starter Johnjohn1963

    (@johnjohn1963)

    Thanks ?? The last update fixed the problem. happy again ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘My site have empty pages’ is closed to new replies.