how to add top and down border to main menu

Posted in: Newspaper
Post count: 80

how to add main menu top and down border of 1 pixel. i am using newspaper default main menu.

Post count: 23312

Hello mystudent,

Please try the code below and add it in Theme panel->Custom CSS area.

The code is ->

.td-header-menu-wrap {
border-bottom: 1px solid red;
border-top: 1px solid red;
}

The result -> http://screencast.com/t/lkzMJWF7XOSy

Hope this helps!

If is not what you mean, please provide more details about your desired changes so I will be able to provide a more accurate response.

Thank you for the message!

Post count: 80

Thank you for such a fast response as i m new here.

The above code worked well, but i don’t want border to be red…
Instead i used this modified code but it didn’t work.
Help me please.

.td-header-menu-wrap {
border-bottom: 1px #f5f5f5;
border-top: 1px #f5f5f5;
}

Post count: 23312

Hello mystudent,

Please try the code below and place it in Theme panel->Custom CSS area.

.td-header-menu-wrap {
border-bottom: 1px solid #f5f5f5;
border-top: 1px solid #f5f5f5;
}

The result -> http://screencast.com/t/1EISyOGAm3LI

Thank you for the message!

Post count: 80

Hello, it is working.
BUT, there are two borders to main menu down, one that shadowed in default install.
how can i remove that default shadow border.

Post count: 23312

Hello mystudent,

If you want to remove that gradient, you have to use a bit of CSS. Please try the code below.

Tha code is ->

.td-header-gradient:before {
display:none;
}

Thank you for the message!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.