By default, menus and titles of blocks are suppercase. How can I use lowercase letters if they are definded in lowercase initially?

Comments

Deepika.chavan’s picture

Hi,
Try adding following css in your 'custom-style.css' file which is there in 'zeropoint/_custom' directory.
1. To get the menus in lowercase add following code:

#navlist.links a, #navlinks ul li a {
  text-transform: lowercase;
}

OR
2.To get the menus in capitalized form add this:

#navlist.links a, #navlinks ul li a {
  text-transform: capitalize;
}

OR
3. To get the menus as they are.
#navlist.links a, #navlinks ul li a {
text-transform: none;
}

(Please Clear cached data at admin/settings/performance).

Rgrds,

Deepika chavan.

Florian’s picture

Issue summary: View changes
Status: Active » Closed (fixed)