Reply To: Several questions

#4178

Question number 7 solved

No need of this code:

/* Menu Spacing */
.menu ul ul.sub-menu a,
.menu ul ul.sub-menu a:visited,
.menu ul ul.children a,
.menu ul ul.children a:visited {
 	margin: 0 10px;
}

With this code i am able to use sub-menus with 46 characters including spaces(if there are more characters, they are still in one line but go out of menu). Main menu text can be longer. Tested with 100 characters and no problems. Thanks to my friend.

/** Nested Anchors */
.menu ul ul.sub-menu a,
.menu ul ul.sub-menu a:visited,
.menu ul ul.children a,
.menu ul ul.children a:visited {
	
        white-space: nowrap;
}

Waiting answer for Question number 5.

Thank you