Hi,
Please paste this code at functions.php of child theme.
if ( !function_exists('sf_horizontal_break_light') ) {
function sf_horizontal_break_light( $atts, $content = null ) {
return '<div class="horizontal-break light"> </div>';
}
add_shortcode( "hr_light", "sf_horizontal_break_light" );
}
if ( !function_exists('sf_horizontal_break_dark') ) {
function sf_horizontal_break_bold( $atts, $content = null ) {
return '<div class="horizontal-break dark"> </div>';
}
add_shortcode( "hr_dark", "sf_horizontal_break_dark" );
}
Now paste this code at custom css code area.
.horizontal-break.light{
color:#fff !important;
}
.horizontal-break.dark{
color:#000 !important;
}
Use hr_dark for dark and hr_light for light.
Thanks
Mohammad