Additions to Custom CSS not taking?

  • Unknown's avatar

    The site is toolnotes.com

    Here is what firebug says the Menu is

    #mainmenu {
    background-color: #00c3e3;
    bottom: 15px;
    height: 40px;
    left: 0;
    margin: 0;
    position: absolute;
    width: 100%;

    And here is what I want it to say. I edited the CSS file and added it to the custom CSS. Its still the same.

    NOTE: I paid someone on fiver a while back and he added this to my custom css

    article.span3 .cattag {
    border-top: medium none;

    }

    article.span3 .cattag {

    display:none;

    }
    #heading { border-top: 0; }
    /*#mainmenu ul li a { padding: 0px 41.55px; }*/
    #mainmenu ul li:last-child a { border-right: 0;

  • Unknown's avatar

    here is what i want it to say

    #mainmenu
    { border-right: 2px solid #fff;
    color: #fff;
    display: block;
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    width: auto; }

  • Unknown's avatar

    Hi @csparks161, it looks like you are using WordPress but you are not hosted here at WordPress.com. For self-hosted WordPress sites such as yours, I would suggest asking for help from the theme author directly or ask in the volunteer-based WordPress.org Themes and Templates forum.

    For general questions on self-hosted WordPress.org installations, visit http://wordpress.org/support/.

    The differences between WordPress.com and WordPress.org.

    I did take a quick look at your site, and you just need to make a change to your selector. This is the original CSS for what you want to do. Use #mainmenu ul li a as your selector.

    #mainmenu ul li a {
        -moz-user-select: none;
        border-right: 2px dotted #fff;
        color: #fff;
        display: block;
        font-size: 13px;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
        text-align: center;
        text-transform: uppercase;
        width: auto;
    }
  • The topic ‘Additions to Custom CSS not taking?’ is closed to new replies.