• Over all I like it. However, I do have some requests;

    1. Allow use of the Jetpack CSS Editor.
    2. “Fonts and Colors” in customizing is redundant. It can be eliminated. Many of its functions can be placed with “fonts” and “colors”
    3. I’m having trouble with the sliders in “margins”, “padding”, etc. A box to type in the values you want would be nice.
    4. The option to remove the spacing between paragraphs would be nice.
    5. Background color for the header. White doesn’t work for me.
    6. Speaking of titles and tag lines, being about to position both on the header image would be nice. With the option to make the title/tag line background transparent would be nice.

    Right now I’m playing with it, So expect to see changes as time goes by.

    As for your English, at least you have an excuse.

    https://wordpress.org/themes/raindrops/

Viewing 1 replies (of 1 total)
  • Theme Author nobita

    (@nobita)

    Hi mythusmage

    1. Allow use of the Jetpack CSS Editor.

    it is possible to use the CSS editor

    Something, please write if there is a problem

    2. “Fonts and Colors” in customizing is redundant. It can be eliminated. Many of its functions can be placed with “fonts” and “colors”

    Fonts and Colors

    Create child theme and create fonts.css

    Raindrops theme is made to read the fonts.css of child themes

    colors

    You can create a your own color type.

    For Example ( apply from child theme ).

    add child theme functions.php

    <?php
    add_action( 'raindrops_last', 'my_color_type_apply' );
    
    function my_color_type_apply() {
    
    	raindrops_register_styles( "mythusmage" );
    }
    
    function raindrops_indv_css_mythusmage() {
    
    	/* your style */
    	$style = "body{background:#ccc;}";
    
    	return $style;
    }
    ?>

    raindrops_indv_css_ is prefix for color_type.

    then open theme customize color type

    select mythusmage,

    I will all color reset, and you can apply your own colors.

    3. I’m having trouble with the sliders in “margins”, “padding”, etc. A box to type in the values you want would be nice.

    Add jetpack CSS Editor ( from child theme )

    #metaslider_26697 {
    	border: 1px solid #000;
    	margin: 1em;
    	padding: 1em;
    }

    The option to remove the spacing between paragraphs would be nice.

    Add jetpack CSS Editor ( from child theme )

    .entry-content p {
    	margin-bottom: 3em;
    }

    6. Speaking of titles and tag lines, being about to position both on the header image would be nice. With the option to make the title/tag line background transparent would be nice.

    Add jetpack CSS Editor ( from child theme )

    #hd {
    	position: absolute;
    }

    and add functions.php

    add_action( 'raindrops_last', 'my_inner_header_image' );
    
    function my_inner_header_image() {
    
    	add_filter( 'raindrops_header_image_contents', 'my_header_image_inner_title' );
    }
    
    function my_header_image_inner_title( $content ) {
    
    	$html = '<h1 class="h1" id="site-title">%1$s</h1>';
    
    	return sprintf( $html, get_bloginfo( 'name' ) );
    }

    As for your English, at least you have an excuse.

    Sorry poor at english.

    you can understand above ?

    above code is works for me but tested at chrome only.

    Thank you.

Viewing 1 replies (of 1 total)

The topic ‘Just Some Suggestions’ is closed to new replies.