Hi nemesis
You should create a child theme for Raindrops customizing.
for example
Create directory at wp-content/themes/ holder name ‘nemesis’
Create style.css file in holder nemesis
please write below.
/*
Theme Name: nemesis
Author: nemesis
Version: 0.1
Template: raindrops
*/
/* your site figre element fix ( this is raindrops bug,I will be fixed next version ) */
.entry-content figure.aligncenter img{
margin:.5em auto;
}
.entry-content figure img{
margin:auto;
width:95%;
width:calc(100% - 1em) ;
}
Create header.php file in holder nemesis
Copied from raindrops header.php
Customize below code.
line 75
if ( true == $raindrops_link_unique_text ) {
echo raindrops_header_image( 'elements' );
} else {
echo raindrops_header_image( 'home_url' );
}
Change from above to below.
$header_image_text_color = 'yellow';
$background_opacity = 0.5;
if ( true == $raindrops_link_unique_text ) {
echo raindrops_header_image( 'elements', array( 'text_attr' => "style=color:{$header_image_text_color};background:rgba(255,255,255,{$background_opacity});" ) );
} else {
echo raindrops_header_image( 'home_url', array( 'text_attr' => "style=color:{$header_image_text_color};background:rgba(255,255,255,{$background_opacity});" ) );
}
$header_image_text_color = 'yellow';//chenge your color
$background_opacity = 0.5;// change background 0-1.0
Thank you.