Is there a way to change the menu capitalization from all words capitalized to what is on the Dashboard? For example, on our page (http://184.154.247.72/~cvacsyst/) when you hover over CVAC Solutions, all of the sub-pages should have a lower case 'for'... and i have it set up that way on the Dashboard, but must be part of the template to force all capitalized words?
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: #menu .ddsmoothmenu li li a,#menu .ddsmoothmenu li a{ text-transform: none; } Thanks & Regards Pramod Patel
Hi Pramod - Thank you for responding. That works to change the main menu capitalization, but we want to change the child menus (see upload)... so the title matches what we've written in on the Dashboard (instead of capitalizing every word). Is this possible? Thanks!
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: #menu .ddsmoothmenu li li a{ text-transform: none !important; } Above code is for only submenu. Code will remove all the text transformation. Thanks & Regards Pramod Patel