• Resolved Sordan

    (@sordan)


    Hello,

    First I want to say thank you for this beautiful theme.
    Sorry my english is quite poor, and I’m a beginner with WordPress.

    Here’s my site : http://www.entombootis.com

    I updated Raindrops yesterday. Since this update, I have two color problems :

    1 – The general font’s color has been changed to grey. When I try to set the color (Appearance > Personnalisation > Colors) it doesn’t work anymore. No matter what color I chose, font stays grey (even the preview).

    2 – My menu bar buttons are now black, except the one selected. The color I want appears briefly when I click but the buttons return black. I would like to have all the buttons always in the same color, just like it was before the update.
    If I try to set (Appearance > Personnalisation > Presentation > Color types) the color changes but the unselected buttons stay black.

    Thanks for your help

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author nobita

    (@nobita)

    Hi Sordan

    Appearance > Personnalisation > Colors

    What’s ‘Personnalisation’ , is Plugin?

    Raindrops theme setting

    Dashboard / Appearance / Customize / Colors

    Please try change

    Thank you.

    Theme Author nobita

    (@nobita)

    Sorry I detect issue.

    Consider the measures, please wait for a while

    Theme Author nobita

    (@nobita)

    This is a bug in Raindrops1.303.

    This bug, it will fix in the next version.

    How to resolve this issue in the current version, it is less than

    Quick Fix

    Open functions.php

    Please Add PHP code

    from /* Add Quick Fix Start */ to /* Add Quick Fix End */

    <?php
    /* Add Quick Fix Start */
    add_filter( 'raindrops_embed_meta_css', 'function_name' );
    
    function function_name( $return_value ) {
    	$css = '';
    	$raindrops_fonts_color = raindrops_warehouse_clone( 'raindrops_default_fonts_color' );
    
    	if ( $raindrops_fonts_color !== '' ) {
    		$css .= "article {color:" . $raindrops_fonts_color . ";}";
    	}
    	return $return_value. $css;
    }
    /* Add Quick Fix End */
    /**
     * functions and constants for Raindrops theme
     *
     *
     * @package Raindrops
     * @since Raindrops 0.1
     */
    if ( !defined( 'ABSPATH' ) ) {
    	exit;
    }

    Thank you for pointing out the problem

    Thread Starter Sordan

    (@sordan)

    Hi Nobita,

    Yes sorry, “Personnalisation” is the french word for Customize (sometimes we have the same words ^^ my mistake).

    Thank you very much for the code, it works perfectly with the font color.

    Would you have another one to fix the menu bar buttons color ?

    Theme Author nobita

    (@nobita)

    menu bar buttons color

    For example

    Add bottom of style.css

    #top #access a,
    #top #access{
        background:navy;
        color:yellow;
    }

    Note: above code, It maybe works menu level 0 or 1 ( Now, your site menu level 0 )

    Thank you.

    Thread Starter Sordan

    (@sordan)

    It works 🙂

    Thank you very much for your quick answers Nobita, you do a great job with this theme.

    Problem resolved.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Color problems with last update’ is closed to new replies.