';
echo ".box-widget-title {background: url($root/images/wtitlebg.png) no-repeat center top; margin: -6px -5px 5px -5px;}";
echo ".sidebar-widget-title {background: url($root/images/wtitlebg.png) no-repeat center top; margin: -6px -5px 5px -5px;}";
echo '';
}
}
add_action( 'wp_head', 'bandtheme_widget_title_bg');
/* Plus 1 Allignment */
function bandtheme_plusone_alignment() {
global $options;
if ($options['if_show_fb_like'] == "1" AND $options['if_show_gplus'] == "1" ) {
echo '';
}
}
add_action( 'wp_head', 'bandtheme_plusone_alignment');
/* Featured Image Alignment */
function bandtheme_featured_image_alignment() {
global $options;
if ($options['if_featured_images'] == "right" ) {
echo '';
}
elseif ($options['if_featured_images'] == "center" ) {
echo '';
}
else {
echo '';
}
}
add_action( 'wp_head', 'bandtheme_featured_image_alignment');
/* Link Color */
function bandtheme_add_link_color() {
global $options;
if ($options['if_link_color'] == "")
$link = '717171';
else
$link = $options['if_link_color'];
echo '';
}
add_action( 'wp_head', 'bandtheme_add_link_color');