From fe4286a90591ba355c003994b4ee0aff4d82893c Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 14 Mar 2008 06:30:41 +0000 Subject: [PATCH] Make RSS and text widget controls the same width. Props mdawaffe. fixes #6205 git-svn-id: https://develop.svn.wordpress.org/trunk@7278 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/widgets.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index 3de091464f..750b7b28f2 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -647,7 +647,7 @@ function wp_widget_text_register() { if ( !$options = get_option('widget_text') ) $options = array(); $widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML')); - $control_ops = array('width' => 460, 'height' => 350, 'id_base' => 'text'); + $control_ops = array('width' => 400, 'height' => 350, 'id_base' => 'text'); $name = __('Text'); $id = false; @@ -1300,7 +1300,7 @@ function wp_widget_rss_register() { if ( !$options = get_option('widget_rss') ) $options = array(); $widget_ops = array('classname' => 'widget_rss', 'description' => __( 'Entries from any RSS or Atom feed' )); - $control_ops = array('width' => 410, 'height' => 200, 'id_base' => 'rss'); + $control_ops = array('width' => 400, 'height' => 200, 'id_base' => 'rss'); $name = __('RSS'); $id = false;