• Resolved ccwalburn

    (@ccwalburn)


    I’m a novice learning WordPress on my local machine. I like the Luminescence Lite theme but can’t figure out how to change the font color of the items in the Primary Menu. I’ve changed every font color in the “Headings, Text and Links” section but none seem to change the Primary Menu item font color. Can it be changed? Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi ccwalburn!
    anything can be changed. Does this theme have an admin panel for theme customization? if it has then check it, otherwise you have to modify the stylesheet of the theme.
    let me know if there is no option for menu font color customization in theme admin panel so we will help you editing the stylesheet of the theme.

    Thread Starter ccwalburn

    (@ccwalburn)

    Yes, it has a customization section called “Headings, Text and Links” that allows you to change the font color for: Headings, Linked Headings, Linked Headings Hover, Sidebar Headings, Sidebar Text Color, Page Text, Bottom Text, Bottom Headings, Page Link Color, Page Links Hover Color, Sidebar Link Color, Sidebar Link Hover Color….and about 7 more. I’ve changed the color of each of these properties but none of them seem to change the primary menu item font color.

    Okay, i think you have complete access to your theme directory as you are running it on localhost.
    so add the following lines to your theme stylesheet.css file.

    #equal-well nav.main-menu ul li a  {
        color: #ff6600!important;
    }

    or

    nav.main-menu ul li a  {
        color: #ff6600!important;
    }

    or

    .main-menu ul li a  {
        color: #ff6600!important;
    }

    add the one of above css to your stylesheet.css file. if top code do not change the color of primary meny then use second and so on until 4th. hope this will work.
    also don’t forget to change the color code to one of your liking.
    like #ff6600 to #your custom color code

    Sorry i forget to put the last option. if none of above code works modify that code like this

    ul li a {
    color: #ff6600!important;
    }

    i hope you will be able to put some custom css into your stylesheet. if you don’t know how to do it then go to theme directory. and locate style.css open up this file in your favourite text editor and add the above css in the last f that file.

    Hope it helps you. if not then i am here to assist you further more.

    Thread Starter ccwalburn

    (@ccwalburn)

    The first one worked. Thank you so much!!!

    Glad to hear that the issue was solved.. ?? Don’t forget to mark the topic as solved.
    we are here in case of any other question.

    I’m having the same issue but not altered anything in a stylesheet before (newbie to WP editing)…is there a simple walkthrough of how to do this so I can change the primary menu colour?

    Also when adding a menu as a widget my primary ‘home’ page link doesn’t totally disappear. Any remedy?

    Many thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to change Primary Menu item font color’ is closed to new replies.