Menu Line Spacing Dilemma

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #390
    Anonymous
    Guest

    Hello.

    How do I decrease the space above and below the name of a page/post/etc. in a pull down or hover menu? For example, look at how long the menu for Buzziness is that’s located on the top menu bar at http://www.lotusfirepress.com.

    Would decreasing padding help? And if it would, where would I find the code? In the stylesheet?

    Again, thanks for your help!

    #988
    admin
    Participant

    Hello,

    Please see the section “=Menu Primary” in the style.css file.
    Related code,

    /** Top Level Anchors */
    .menu ul a,
    .menu ul a:visited {
    display: block;
    font-size: 14px;
    line-height: 21px;
    padding: 20px;
    position: relative;
    text-decoration: none;
    color: #2f2f2f;
    }

    /** Nested Anchors */
    .menu ul ul.sub-menu a,
    .menu ul ul.sub-menu a:visited,
    .menu ul ul.children a,
    .menu ul ul.children a:visited {
    font-size: 13px;
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: dotted 1px #e7e7e7;
    }[/CODE]

    Thanks![CODE]/** Top Level Anchors */
    .menu ul a,
    .menu ul a:visited {
    display: block;
    font-size: 14px;
    line-height: 21px;
    padding: 20px;
    position: relative;
    text-decoration: none;
    color: #2f2f2f;
    }

    /** Nested Anchors */
    .menu ul ul.sub-menu a,
    .menu ul ul.sub-menu a:visited,
    .menu ul ul.children a,
    .menu ul ul.children a:visited {
    font-size: 13px;
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: dotted 1px #e7e7e7;
    }[/CODE]

    Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.