Hi there,
Had thesame problem but solutions you all provided didn't give me the best results so i when a bit further and found a solution that works great for me.
I edited the file notice.php and I added this code:
<style type="text/css">
body {
overflow:hidden;
}
</style>
So the beginning of the file now looks like:
<?php
/**
* @package HikaShop for Joomla!
* @version 2.2.3
* @author hikashop.com
* @copyright (C) 2010-2013 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<style type="text/css">
body {
overflow:hidden;
}
</style>
<?php
$app = JFactory::getApplication();
$wishlist_id = $app->getUserState( HIKASHOP_COMPONENT.'.wishlist_id','0');
$cart_type = $app->getUserState( HIKASHOP_COMPONENT.'.popup_cart_type','cart');
$app->setUserState( HIKASHOP_COMPONENT.'.popup_cart_type','cart');
?>
This hides both of the scrollbars. After that I edited the width en heigt to my desired specifications by adding:
.hikashop_notice_box_content {
width: 440px !important;}
To my frontend_custom.css all the way on the bottom.
Just thought i'd share my solution!