Zen Cart 1.3.5
Patch: 1::
Database Patch Level: 1.3.5
No addons
Under the categories - I cannot get the first letter of each word capitalized. Also, where can I change the >>?
Zen Cart 1.3.5
Patch: 1::
Database Patch Level: 1.3.5
No addons
Under the categories - I cannot get the first letter of each word capitalized. Also, where can I change the >>?
normally , you should be able to have first word capitalized . if that is happening , a CSS rule might be effecting your category .
in your stylesheet. look for
text-transform: lowercase;
in top category rule and remove it
Thank you. I hope this is it:
.ml2{
font-size: 11px;
color: #2D2D2D;
text-decoration: none;
text-transform: lowercase;
}
I should make it look like this?
.ml2{
font-size: 11px;
color: #2D2D2D;
text-decoration: none;
}
Is where I could change the font size of the catagores to a larger one IE: 12 or 13px?
sorry , i can not tell you without seeing your site as those CSS rules are custom and not zencart default
Sorry tony_sar. The url is teazin.com. Or would you need the style sheet? I didn't set the zen cart up, plus I have no idea what I'm looking at.
css you provided is the correct one to modify
.ml2{
font-size: 11px;
color: #2D2D2D;
text-decoration: none;
text-transform: lowercase;
}
remove text-transform:lowercase from this rule
you can change the size of your category font from same rule . by change 11px to any other value you need.
That didn't seem to help. Did I do something wrong?
modification should be done to your stylesheetoriginal.css , as far as i can see , nothing has been changed there , i still see the property that needs to be removed .
Ah, I had changed the name of the origional file in case I messed something up. It still must have been reading it. I deleated it and now it works fine. Thanks so much. It must be tough on you guys with some of us who know nothing.