News:

AbanteCart v1.4.2.1 is released.

Main Menu

Do you like AbanteCart? Please rate AbanteCart or share your experience with other eCommerce entrepreneurs. Go to Softaculous rating page to add your rating or write a review

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - mandmlogicosol

#1
To force category names to stay on one line in drop-down menus, you can use CSS to prevent text wrapping. Here's a quick solution:
.dropdown-menu li a {
    white-space: nowrap;
}
This CSS rule applies the nowrap property to the anchor tags within the dropdown menu, ensuring that the text stays on a single line. If the text is too long, it will overflow horizontally, so you may also want to set a max width and enable text truncation:
.dropdown-menu li a {
    white-space: nowrap;
    max-width: 200px; /* Adjust as necessary */
    overflow: hidden;
    text-overflow: ellipsis;
}

Forum Rules Code of conduct
AbanteCart.com 2010 -