Title: change width
Last modified: August 21, 2016

---

# change width

 *  Resolved [britinspain](https://wordpress.org/support/users/britinspain/)
 * (@britinspain)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/)
 * How can I change to the width to 1200px because 974 is too narrow and fluid width
   does not render on mobile devices please

Viewing 10 replies - 1 through 10 (of 10 total)

 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171020)
 * Hi britinspain
 * Add to functions.php first line, ver $raindrops_page_width.like below.
 *     ```
       <?php
       /**
        * My Extend Page Width
        *
        *
        *
        */
       	$raindrops_page_width = '1200';
       ?>
       <?php
       /**
        * functions and constants for Raindrops theme
        *
        *
        * @package Raindrops
        * @since Raindrops 0.1
        */
           if ( ! defined( 'ABSPATH' ) ) {
               exit;
           }
       ```
   
 * Note.
    I detect It turned out that only few bugs.
 * Although I think that operation is not affected, if detailed to PHP, please also
   change the following into it.
 * functions.php line 3535
 * Please add to global ver $raindrops_document_width like below
 *     ```
       function raindrops_header_image( $type = 'default', $args = array( ) ) {
       			global $raindrops_document_width;
       ```
   
 * This bug maybe fixed next versions (1.136 or higher )
 * Thank you.
 *  Thread Starter [britinspain](https://wordpress.org/support/users/britinspain/)
 * (@britinspain)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171089)
 * Hi That worked, thank you. However, header image has disappeared. Also how do
   I change width of center column please.
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171101)
 * > how do I change width of center column please.
 * Appearance / Raindrops Options / Extra Sidebar Width
 * It will interlock and the width of a center column will change, if the width 
   of an extra sidebar is adjusted.
 * Thank you.
 *  Thread Starter [britinspain](https://wordpress.org/support/users/britinspain/)
 * (@britinspain)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171106)
 * Hi, thanks for your help. Sorry, but all that did was to change the right hand
   sidebar. I increased from 25% to 50% and the right sidebar got bigger but the
   center column did not change.
 * Also do you know why the header image has disappeared when I changed the width
   of the theme?
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171111)
 * The right column and a central column share width according to the width of the
   right column.
 * A header picture does not usually disappear just because it changed a setup of
   width.
 * Would you let know the address of a site?
 * Thank you.
 *  Thread Starter [britinspain](https://wordpress.org/support/users/britinspain/)
 * (@britinspain)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171114)
 * Certainly. its [http://www.antiquitiesgiftshop.com](http://www.antiquitiesgiftshop.com).
   Many thanks
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171115)
 * I understand this is Raindrops bug.
 * Quick Fix below
 * **Fix header image.**
 * Add to functions.php first line `<?php` before
 *     ```
       <?php
       add_filter( 'raindrops_header_image_css', 'bug_custom_doc_hotfix' );
   
       function bug_custom_doc_hotfix( $css ){
   
       	$doc = raindrops_warehouse_clone( 'raindrops_page_width' );
   
       	$width = 1200;
   
       	$height = 198; // your header image height Please config
   
       	if( $doc == 'custom-doc' ) {
   
       		return str_replace( array( 'width:px;', 'height:0px;'),
       				array( 'width:'.$width.'px;', 'height:'.$height.'px;' ), $css );
   
       	}
   
       	return $css;
       }
       ?>
       ```
   
 * **Center columns width**
    I think that the problem of a center column probably
   becomes normal by the following corrections although it is not reproducible.
 * style.css line:3364
 *     ```
       .yui-ge div.first {
       width: 516px;
       }
       ```
   
 * change below
 *     ```
       .yui-ge div.first {
       /*width: 516px;*/
       }
       ```
   
 * Thank you.
 *  Thread Starter [britinspain](https://wordpress.org/support/users/britinspain/)
 * (@britinspain)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171116)
 * That has worked perfectly, thank you
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171136)
 * **The header image bug when using $raindrops_page_width has fixed version 1.137**
 * Thank you.
 *  Thread Starter [britinspain](https://wordpress.org/support/users/britinspain/)
 * (@britinspain)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171137)
 * Many thanks

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘change width’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/raindrops/1.700/screenshot.png)
 * raindrops
 * [Support Threads](https://wordpress.org/support/theme/raindrops/)
 * [Active Topics](https://wordpress.org/support/theme/raindrops/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/raindrops/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/raindrops/reviews/)

## Tags

 * [width](https://wordpress.org/support/topic-tag/width/)

 * 10 replies
 * 2 participants
 * Last reply from: [britinspain](https://wordpress.org/support/users/britinspain/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/change-width-4/#post-4171137)
 * Status: resolved