TCoD Layout help

  • 1,672
    Posts
    19
    Years
    • Seen Apr 19, 2020
    Yes, I'm using a layout from TCoD, and I want to style it up a bit more by making my menu look like Dragonfree's scyther style. I'm having trouble with it, and I make fatal mistakes most of the time.
     
    The relevant CSS from my Scyther style menu:

    Code:
    #menu ul {
    margin:0;
    padding:0;
    list-style-type:none;
    border-right:1px solid #000000;
    border-left:1px solid #000000;
    border-bottom:1px solid #000000;
    width:16em;
    }
    
    #menu ul li {
    padding-left:0;
    margin:0;
    border-top:1px solid #000000;
    }
    
    #menu ul li a {
    font-weight:bold;
    font-family:"comic sans ms", sans-serif;
    margin:0;
    padding:0.2em 1em;
    text-decoration:none;
    }
    
    #menu ul li ul {
    margin-top:0.1em;
    padding-bottom:0;
    border:0;
    border-top:1px solid #000000;
    }
    
    #menu ul li ul li {
    margin:0;
    border:0;
    position:relative;
    }
    
    #menu ul li ul li a:link, #menu ul li ul li a:visited {
    display:block;
    font-weight:normal;
    font-variant:normal;
    padding:0.2em 1em;
    width:14em;
    font-family:verdana, sans-serif;
    }
     
    Back
    Top