• Resolved Slodge

    (@slodge)


    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. Is there anyway to fix this. Thanks

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

    (@prabhakaraan)

    i got this problem too…

    any help, thanks

    Tareq

    (@worthingtech)

    Can you click the box header and drag it?

    Zeus

    (@prabhakaraan)

    nope

    Tareq

    (@worthingtech)

    It looks like a WordPress issue and as such you’ll probably be better off posting this question in 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

    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

    (@prabhakaraan)

    Works fine! Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Problem with logo upload box’ is closed to new replies.