Title: Problem with logo upload box
Last modified: August 21, 2016

---

# Problem with logo upload box

 *  Resolved [Slodge](https://wordpress.org/support/users/slodge/)
 * (@slodge)
 * [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/)
 * when i click site logo browse button only half of the upload box is visible at
   the bottom of the page. here’s a link to the screenshot [Screenshot](http://chhingaveng.com/screenshot.png).
   Is there anyway to fix this. Thanks

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

 *  [Zeus](https://wordpress.org/support/users/prabhakaraan/)
 * (@prabhakaraan)
 * [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/#post-3689691)
 * i got this problem too…
 * any help, thanks
 *  [Tareq](https://wordpress.org/support/users/worthingtech/)
 * (@worthingtech)
 * [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/#post-3689701)
 * Can you click the _box header_ and drag it?
 *  [Zeus](https://wordpress.org/support/users/prabhakaraan/)
 * (@prabhakaraan)
 * [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/#post-3689726)
 * nope
 *  [Tareq](https://wordpress.org/support/users/worthingtech/)
 * (@worthingtech)
 * [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/#post-3689754)
 * It looks like a WordPress issue and as such you’ll probably be better off posting
   this question in [How-To and Troubleshooting](http://wordpress.org/support/forum/how-to-and-troubleshooting).
 * It looks to me like a jQuery conflict of some sort but I wouldn’t like to be 
   tested on that.
 * Sorry I can’t help you guys out.
 * Best of luck,
    Tareq
 *  [dharmapoudel](https://wordpress.org/support/users/dharmapoudel/)
 * (@dharmapoudel)
 * [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/#post-3689837)
 * Hi there,
 * Just replace this function on theme-options.php file on sampression-lite/includes/
   theme-options/ directory
 *     ```
       function sampression_admin_enqueue_styles() {
       	/* register */
       	wp_register_style( 'sampression-theme-options-css', get_template_directory_uri() . '/includes/theme-options/theme-options.css', array(), '1.4', 'screen' );
       	/* enqueue */
       	wp_enqueue_style('sampression-theme-options-css');
       }
       ```
   
 * with
 *     ```
       function sampression_admin_enqueue_styles() {
       	/* register */
       	wp_register_style( 'sampression-theme-options-css', get_template_directory_uri() . '/includes/theme-options/theme-options.css', array(), '1.4', 'screen' );
       	/* enqueue */
       	wp_enqueue_style('sampression-theme-options-css');
       	wp_enqueue_style('thickbox', get_template_directory_uri() . 'wp-includes/js/thickbox/thickbox.css', false, false, 'screen');
       }
       ```
   
 * OR
    just add this line
 *     ```
       wp_enqueue_style('thickbox', get_template_directory_uri() . 'wp-includes/js/thickbox/thickbox.css', false, false, 'screen');
       ```
   
 * inside the function
 *     ```
       function sampression_admin_enqueue_styles() {
       }
       ```
   
 * Also let me know if this helps.
 *  [Zeus](https://wordpress.org/support/users/prabhakaraan/)
 * (@prabhakaraan)
 * [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/#post-3689855)
 * Works fine! Thanks!

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

The topic ‘Problem with logo upload box’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/sampression-lite/2.3/screenshot.
   png)
 * Sampression Lite
 * [Support Threads](https://wordpress.org/support/theme/sampression-lite/)
 * [Active Topics](https://wordpress.org/support/theme/sampression-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/sampression-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/sampression-lite/reviews/)

 * 6 replies
 * 4 participants
 * Last reply from: [Zeus](https://wordpress.org/support/users/prabhakaraan/)
 * Last activity: [13 years ago](https://wordpress.org/support/topic/problem-with-logo-upload-box/#post-3689855)
 * Status: resolved