Reputation: 1667
I am working a website
, but having the problem that I cant move the navigation bar down in the header. Really worried about it.
Here is the jsfiddle:
The target is to make it look like this in the header:
https://www.dropbox.com/s/m2ijroj58vey2rf/target.png
Upvotes: 0
Views: 95
Reputation: 62
Just Make change In header class in ul#nav.
Add margin: 50px 0px 0px 0px; in ul#nav class.
ul#nav, ul#nav .subs {
margin: 50px 0px 0px 0px;
}
Upvotes: 1
Reputation:
There are sevel ways to do this but a simple way to do this is by using the code below:
ul#nav, ul#nav ul{
list-style: outside none;
margin: 40px 20px 0 0;
}
This should salve your question.
Upvotes: 2
Reputation: 1278
Update your css. Working Fiddle
ul#nav, ul#nav ul {
list-style: none;
margin:40px 20px 0px 0px;
}
Upvotes: 2
Reputation: 2897
Nothing to worry about.
Add this:
ul#nav, ul#nav ul {
list-style: none outside none;
margin: 40px 20px 0 0;
}
See this demo: http://jsfiddle.net/2QLz4/1/
Upvotes: 1