Jump to content

Uppercase Letters


Recommended Posts

Hi to all,

 

i´m new to prestashop and i need some help.

 

I want that all Module Titels and Categories not been automaticly get uppercase. What i mean is if i add a new Category call it " Test" so that only the T is upper or if i add it TEST than it should be displayed as such.

 

Whould great if someone could tell me where i can change this and how!

 

 

Thanks a lot

Link to comment
Share on other sites

open global.css file located in your theme directory,

go to line ~292

 

there is something like:

.block .title_block, .block h4 {
padding: 6px 11px;
font-size: 12px;
color: #fff;
text-shadow: 0 1px 0 #000;
text-transform: uppercase;
background: #383838;
text-align: left;
font-weight: bold;
}

 

remove the:

text-transform: uppercase;

param

Link to comment
Share on other sites

.cleantheme .block .title_block, .cleantheme .block h4 {
background: transparent;
color: #555555;
font-size: 16px;
font-weight: normal;
padding: 0;
line-height: 30px;
height: 30px;
text-align: left;
text-shadow: none;
text-transform: uppercase;
border-bottom: 2px solid #f15a23;
display: block;
}

 

+

 

.block .title_block, .block h4 {
padding: 6px 11px;
font-size: 12px;
color: #fff;
text-shadow: 0 1px 0 #000;
text-transform: uppercase;
background: #383838;
text-align: left;
font-weight: bold;
}

 

in the cleantheme.css + global.css

Link to comment
Share on other sites

×
×
  • Create New...