d12 Message Blocks Options

New! In version 1.1, you can select from 10 different border styles and 11 color schemes. Seven of the color schemes are suitable for light backgrounds, and the other four are suitable for dark backgrounds. (Screenshots display the "Business" color scheme.)

Select from one of 10 different border styles.

'; }; // Callback for color scheme setting_section function cs_settings_section() { echo '

Select from one of 11 different color schemes.

'; }; // Callback for settings_field for Border Style function bs_settings_field(){ $options = get_option( 'd12mb_options' ); $html = '

Rounded Corner Options

'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= '

Square Corner Options

'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= '

MediaWiki Style Borders have a bar on the left side

'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; echo $html; } // Callback for settings_field for Color Scheme function cs_settings_field(){ $options = get_option( 'd12mb_options' ); $html = '

Light Themes — suitable for light backgrounds

'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= '

Dark Themes — suitable for dark backgrounds

'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; echo $html; };