The menu runs over two lines but the background does not follow. Modify this theme the same way D-theme suggested for Dreamy in http://drupal.org/node/343829#comment-1293392.

Edit style.css. Look for #primary { at line 152. Move the background attribute to a separate element, change repeat-x to repeat so the image will repeat vertically as well as horizontally, and remove the center top position so that it defaults to top left:

#nav
    {
    background: url(images/primary-bg.png) repeat;
    }

Remove the menu height restrictions with the following attribute. Instead of adding this attribute, you could delete the height attribute from the menu in css/menu.css.

#nav, #nav ul
    {
    height: auto;
    }

Now add a trailing area that allows expansion of the menu. This is a CSS trick designed to get around problems with defining heights in CSS 2.1 and CSS 3.

#nav ul:after
    {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
    }

Comments

vitis’s picture

subscribing

dealancer’s picture

Thanks for your advices I will try to do it soon.

dealancer’s picture

Status: Active » Needs review

Going to fix it trough javascript or configuration cause this updates brings many problems when one line is used only.