• Resolved jaedens

    (@jaedens)


    The titles of widgets on the right sidebar are working great except for one. I installed the Sponsors widget and while the Title appears in H3, there is no coloured box around it. Not sure if it is something to do with the theme or the widget, but I keep looking at the code of both and can’t seem to figure it out.

    The website in question is http://cccrp.org/

    You can see what I mean on there. Any help would be greatly appreciated.

Viewing 1 replies (of 1 total)
  • Rinku Y

    (@rinkuyadav999)

    Hi @jaedens

    Please contact with Sponsors widget developer. this is not theme side issue. actually this plugin create own widget and area.

    you have to put widgets in theme widget area.

    register_sidebar( array(
    		'name'			=> __( 'Blog Sidebar', 'seopress' ),
    		'id'			=> 'sidebar-1',
    		'description'	=> __( 'Widgets for Blog sidebar. If you are using Full Width Layout in customize, then this sidebar will not display.', 'seopress' ),
    		'before_widget'	=> '<div id="%1$s" class="widget_sidebar_main clearfix %2$s">',
    		'after_widget'	=> '</div>',
    		'before_title'	=> '<h3 class="right-widget-title">',
    		'after_title'	=> '</h3>',
    	) );

    You can see ‘widget_sidebar_main’ and ‘right-widget-title’. these are CSS selector and use to design widget. but your plugin generate different HTML/CSS.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Problem with widget title’ is closed to new replies.