Menu bar line

Hey guys, me again,

I need to ask you if you can help me with one little detail.
I want the menu bar white just like the rest of the page, but would it be possible to have a sort of shadow or a fine line that separates it from the rest?

not sure if I explained myself well.

thanks for your help
cheers
Isabella
site www.boundlessroads.com

Hi Isabella,

Thank you for writing in, you can use the custom CSS below for adding top and bottom border and shadow on the navbar.

header .x-navbar-wrap {
	border-top: 1px solid #76777b;
	border-bottom: 1px solid #76777b;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
	-moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
	box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.33);
}

Hope it helps,
Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.