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


Recent Events
  • 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.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


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 11 Years, 2 Months ago Karma: 748
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 11 Years, 2 Months 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 11 Years, 2 Months ago Karma: 0
The administrator has disabled public write access.
 
#37508
Re:Long submenus cut off by the footer 11 Years, 2 Months ago Karma: 748
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 11 Years, 2 Months 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