dsh2000 2 Report post Posted August 9, 2011 By default, the menu in the primary-nav of PlatformPro is in uppercase. I would like to change it to be italicized, with capital lettering. So I applied the following CSS to my child theme: #primary-nav {font-style: italic; text-transform: capitalize; } However, I do not see any changes.....Am I targeting the wrong tag? Share this post Link to post Share on other sites
dsh2000 2 Report post Posted August 9, 2011 I'm sorry, forgot to include my page: http://tatianadesigns.com Any help to point me in the right direction would be greatly appreciated. :-) Share this post Link to post Share on other sites
dsh2000 2 Report post Posted August 9, 2011 Tried to modify the main CSS , but with no luck. /* Secondary Font Style */ .font2, .font-sub, ul.main-nav li a, #secondnav li a, .metabar, .subtext, .subhead, .widget-title, .post-comments, .reply a, .editpage, #pagination .wp-pagenavi, .post-edit-link, #wp-calendar caption, #wp-calendar thead th, .soapbox-links a, .fancybox, .standard-form .admin-links, #featurenav a, .pagelines-blink, .ftitle small, .button, input[type="submit"], input[type="button"], input[type="reset"], .submit{ font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", sans-serif; text-transform: capitalize; letter-spacing: .1em; } Any ideas?? Share this post Link to post Share on other sites
dsh2000 2 Report post Posted August 9, 2011 Got it finally!!! It was the nav_row!! #nav_row ul li a {font-style: italic; text-transform: capitalize; } Share this post Link to post Share on other sites