• Resolved smartsexygeeky

    (@smartsexygeeky)


    Forgive the n00b question and issue at hand!

    I cannot figure out how to remove the drop shadow on the text that appears in the navigation bar. It changes with the “secondary colour” option.

    I have every possible text-shadow set to “none” or “0px” in my CSS.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author themeshaker

    (@themeshaker)

    Simply replace the following code in your .css file

    .main-navigation a {
        text-shadow: 2px -1px 1px #BE3243;
        color: #FFF;
    }

    with

    .main-navigation a {
        text-shadow: none !important;
        color: #FFF;
    }

    that should save the day for you ??

    Theme Author themeshaker

    (@themeshaker)

    I consider this topic as resolved

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Drop Shadow on Nav Text’ is closed to new replies.