Custom menu changes on iTheme2

  • Hi,
    I just discovered the custom menu functionality (quite handy),
    so I created my new menu to replace the original right away.
    When setting it up, I noticed that it ignored some of my CSS code, for example the text-shadow that I set to none (the shadow being in the theme’s original code). Now I can’t seem to get rid of it although it was no problem with the original menu.
    Is the code slightly different for a custom menu? How can I get rid of the text-shadow and change the color of the text?
    My code:

    #access {
    margin-top: -50px;
    font-family: Tahoma, Verdana, Segoe, sans-serif;
    text-transform: uppercase;
    background: 0 repeat, linear-gradient(to left,#fbcdff,#f8ffcf,#b9fec1);
    margin-left: 20px;
    box-shadow: -6px 6px 0 0 rgba(255,0,224,0.27);
    border-radius: 15px;
    text-shadow:none;
    color:blue;
    position: relative;
    }

    Note: the !important property doesn’t seem to help with that.

    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • It looks like for the text-shadow you need to remove it on the anchor element and not just the #access nav element – try this:

    #access a {
      text-shadow:none;
    }
  • It worked! Amazing.
    Thank you!

  • The topic ‘Custom menu changes on iTheme2’ is closed to new replies.