AbanteCart Community

Shopping Cart Operations => Tips and Tricks => Topic started by: OneMore on December 23, 2023, 11:07:40 AM

Title: Solution - How to make text of main horizontal menu lowercase
Post by: OneMore on December 23, 2023, 11:07:40 AM
Here's how you make all texts of the drop menu lowcase.  (Tested with AbanteCart 1.2.11.)

In file "storefront/view/default/stylesheet/style.css":

Comment out lines 640 and 679 (or remove them):

Code: [Select]
ul.categorymenu > li > a {
(...)
/* text-transform:uppercase;  (at line 640)*/
(...)
}
Code: [Select]
.categorymenu li a.menu_home {
(...)
/* text-transform:uppercase;  (at line 679)*/
(...)
}