How to remove gap between menu

admin

Administrator
Staff member
I made this page in wordpress and foundation.I want to change the below menu :
<img src=" " alt="">

into this:
<img src=" " alt="enter image description here">

My css to override foundation's app.css is as below:

Code:
.top-bar-section li
{
    width:150px;
    word-wrap:break-word;
    border-bottom: solid 1px #BC9633;
    float:left;
}

PART OF app.css

Code:
.top-bar-section li:not(.has-form) a:not(.button) {padding:0 15px;line-height:45px;background:#ffffff;}.top-bar-section li:not(.has-form) a:not(.button):hover {border-bottom: 1px solid #BC9633;padding-bottom: 1px;padding-bottom: 3px;border-bottom-width: 1px;border-bottom-style: solid;}.top-bar-section li.active:not(.has-form) a:not(.button) {padding:0 15px;line-height:45px;color:#000000;border-bottom: 1px solid #BC9633;padding-bottom: 1px;padding-bottom: 3px;border-bottom-width: 1px;border-bottom-style: solid;}.top-bar-section li.active:not(.has-form) a:not(.button):hover {background:#BC96633;color:#000000;}

HTML

Code:
&lt;div class="menu-wrapper"&gt;
    &lt;div class="top-bar-container contain-to-grid show-for-medium-up"&gt;
    &lt;nav class="top-bar" data-topbar role="navigation"&gt;
        &lt;ul class="title-area"&gt;
            &lt;li class="name"&gt;
                &lt;!--&lt;h1&gt;&lt;a href="&lt;?php echo home_url(); ?&gt;"&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;--&gt;
               &lt;a href="&lt;?php echo home_url(); ?&gt;"&gt;&lt;img src="img/fspb_logo.png" width="165" height="145" &gt;&lt;/a&gt;
            &lt;/li&gt;

        &lt;/ul&gt;
        &lt;section class="top-bar-section" style="padding-top:55px;"&gt;

//below two lines display the menu

Code:
        &lt;?php foundationPress_top_bar_l(); ?&gt;
        &lt;?php foundationPress_top_bar_r(); ?&gt;


        &lt;/section&gt;

    &lt;/nav&gt;



&lt;/div&gt;
&lt;/div&gt;

***** I removed padding:0 15px;line-height:45px; from .top-bar-section li..and it turned out to be below:
<img src=" " alt="enter image description here">

How do I push the long menu up pls?