• Hello all,

    I’m doing css edits on a theme called Carmag by SM Themes. Their support isn’t very supportive of my custom css edits, so I was hoping to find a css Wizard here.

    I’m trying to “stick” my top nav menu to top of screen and I almost have it correct, but there’s a gap I can’t close.

    It’s not apparent in Firefox when editing, but it is in every other browser. This is the custom css I have and my site’s at – https://2002bmw.com.

    #mainmenu-container {
    position:absolute;
    top:0px;
    }
    body {
    margin-top:70px;
    }
    #mainmenu-container {
    position:fixed;
    top:25px;
    left:50;
    font-size: 25px;
    font-family: "arial";
    width:985px;
    z-index: 99;
    }

    There has been several code edits over the past several days which have led up to the current code.

    Any help would be greatly appreciated.

    Barry

Viewing 16 replies (of 16 total)
  • Thread Starter NetMonkey

    (@headmonkey)

    I figured it out. I had to use:

    #mainmenu-container li{
        float: right;
        padding: 10px;
    }

    Thanks for your help Techievous.

Viewing 16 replies (of 16 total)
  • The topic ‘css edits are "almost" correct’ is closed to new replies.