Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Long submenus cut off by the footer
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Long submenus cut off by the footer
#37374
Re:Long submenus cut off by the footer 12 Years, 1 Month ago Karma: 763
We don't see the problem. Please provide a direct link to a page where it occurs and provide a screenshot where we can see the problem.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#37505
Re:Long submenus cut off by the footer 12 Years, 1 Month ago Karma: 0
Last Edit: 2013/02/25 21:05 By jwjoomla.
The administrator has disabled public write access.
 
#37506
Re:Long submenus cut off by the footer 12 Years, 1 Month ago Karma: 0
The administrator has disabled public write access.
 
#37508
Re:Long submenus cut off by the footer 12 Years, 1 Month ago Karma: 763
Add the following CSS rule:

BODY #contentarea
{
overflow: visible;
}


Regards,
ARI Soft
The administrator has disabled public write access.
 
#37511
Re:Long submenus cut off by the footer 12 Years, 1 Month ago Karma: 0
Thanks, looks like:

__________________

BODY #contentarea
{
overflow: visible;
}
__________________

and the previously mentioned:

__________________

BODY #contentarea2
{
overflow: visible;
}
__________________

together fix the problem.

However, adding that code also makes the entire main page (contentarea, contentare2) disappear in IE7 only.

So, here's the CSS hack I've added that appears, in my testing, to keep the long menus from getting cut off in all browsers (except IE7), and keeps the main body (contentarea) from disappearing in IE7 (but long menus will be cut off - an acceptable loss):

__________________

BODY #contentarea
{
overflow: visible; /* for all browsers */
*overflow: hidden; /* cancels this in IE6 & IE7 */
_overflow: visible !important; /* re-enables for IE6 */
}

BODY #contentarea2
{
overflow: visible;
*overflow: hidden;
_overflow: visible !important;
}
__________________
The administrator has disabled public write access.
 
Go to topPage: 12