Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Changing all caps to not caps in categories

Changing all caps to not caps in categories

Locked

Views: 776

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
30 Apr 2009, 11:32 PM
#1
jmelwak avatar

jmelwak

New Zenner

Join Date:
Jul 2007
Posts:
64
Plugin Contributions:
0

Changing all caps to not caps in categories

can you take a look at http://www.passionatecreations.com

where can i find to remove all the caps for the categories?

thanks for any help!

1 May 2009, 3:20 AM
#2
get_em_fast avatar

get_em_fast

Totally Zenned

Join Date:
Dec 2006
Location:
Seligman, MO U.S.A.
Posts:
2,072
Plugin Contributions:
1

Re: Changing all caps to not caps in categories

Since you're using the "classic" template, it will be:

includes/templates/classic/css/stysheet.css

Find these lines:

#navColumnOneWrapper, #navColumnTwoWrapper {text-transform:uppercase;

    }
```and change:

 uppercase; 

to:

none;

resulting in this:

#navColumnOneWrapper, #navColumnTwoWrapper {text-transform:none;

}


Actually, it would be even better to just delete that whole entry That would clean you code up a little bit, as it absolutely useless.
1 May 2009, 3:24 AM
#3
jmelwak avatar

jmelwak

New Zenner

Join Date:
Jul 2007
Posts:
64
Plugin Contributions:
0

Re: Changing all caps to not caps in categories

thank you thank you thank you so much! it worked!:clap:

1 May 2009, 4:10 AM
#4
get_em_fast avatar

get_em_fast

Totally Zenned

Join Date:
Dec 2006
Location:
Seligman, MO U.S.A.
Posts:
2,072
Plugin Contributions:
1

Re: Changing all caps to not caps in categories

Not a problem. Glad to see you got it.