Whenever you change the the lowercase setting in template you get a question marks (?) between the user name and date on node displays and also in other similar displayed areas. By default all letters in primary menu appear in lowercase letters and there's no way that you can fix it through css.

Comments

vinoth.3v’s picture

Project: Drupal core » Deco
Version: 6.17 » 6.x-1.x-dev
Component: other » User interface

assigning to correct theme...

Deepika.chavan’s picture

Hi,
We can fix this problem through css . Please try an using one of the following appropriate css codes.

To convert primary links to lowercase :

 #header ul.primary-links li a { 
   text-transform:lowercase; 
} 

To convert primary links to uppercase :

#header ul.primary-links li a {
   text-transform:uppercase;
}

To make first character of each word to uppercase :

#header ul.primary-links li a {
   text-transform:capitalize;
}

Rgrds,

Deepika Chavan.

Deepika.chavan’s picture

c31ck’s picture

Component: User interface » Code
Priority: Critical » Minor
Status: Active » Postponed (maintainer needs more info)

Could you please provide steps to reproduce this issue? It's not clear to me when the question marks show up.

c31ck’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

Feel free to reopen this issue if this is still an issue.