|
This is not easy to give some 100% good answer without css but if is your new menu inserted in new div with some id (e.g. #menu2) then you can simple to insert in this new css in front of any definition #menu2. For example:
instead of:
.no_underline {
text-decoration: none;
}
write:
#menu2 .no_underline {
text-decoration: none;
}
In that case this css will aplly only on elements in #menu2 div.
__________________
Please login or register to view this content. Registration is FREE - uncommon free scripts
Please login or register to view this content. Registration is FREE - Städte, Sport, Party, Gourment, Apartments, Hotels
Last edited by shivaji; 10-31-2010 at 12:37 PM..
|