AbanteCart Community

eCommerce construction => Installation and Configuration => Fresh Installation => Topic started by: TopWebNames on August 23, 2013, 04:47:49 AM

Title: How do I make Category names on the menu be upper and lower case?
Post by: TopWebNames on August 23, 2013, 04:47:49 AM
I just added a Category in my first installation of AbanteCart. The new Category name now appears on the navigation menu in ALL CAPS! I REALLY don't like ALL CAPS!  How do I make the Category names on the navigation menu be upper and lower case, as I have entered them?
Title: Re: How do I make Category names on the menu be upper and lower case?
Post by: abantecart on August 23, 2013, 11:41:48 PM
You need to edit CSS file /storefront/view/default_html5/stylesheet/style.css

Look for:

Code: [Select]
.heading1 .maintext {
....
text-transform: uppercase;
...


remove 

Code: [Select]
text-transform: uppercase;
Title: Re: How do I make Category names on the menu be upper and lower case?
Post by: TopWebNames on August 24, 2013, 12:22:19 AM
You need to edit CSS file /storefront/view/default_html5/stylesheet/style.css

Look for:

Code: [Select]
.heading1 .maintext {
....
text-transform: uppercase;
...


remove 

Code: [Select]
text-transform: uppercase;

Thank you VERY much.

I REALLY don't like ALL UPPERCASE on a website. I think that it's only appropriate for bringing attention to something, so I removed EVERY instance of "text-transform: uppercase;" in the style.css, and I like my store MUCH better now! :)
Title: Re: How do I make Category names on the menu be upper and lower case?
Post by: abantecart on August 24, 2013, 10:45:59 AM
Glad it worked out  ;)
Title: Re: How do I make Category names on the menu be upper and lower case?
Post by: TopWebNames on August 24, 2013, 04:59:19 PM
Glad it worked out  ;)

Thank you!  It sure did work out for me. I like it MUCH better.  I suggest that you add this to the Documentation / User Manual because I'm sure that many other AbanteCart users might prefer UPPER and lower case letters.