Hi. I'm having a bit of trouble with the navigation on Wordpress. I'd like it to be set horizontally instead of vertically.
You can see it here:
I've changed the text-wrap, positions, alignment.. everything. It's in a list (albeit was horizontally before I edited it.) The code is as follows.
HTML:
And the CSS
Ps - I know everything is further down - it's the menu's margins.
You can see it here:

I've changed the text-wrap, positions, alignment.. everything. It's in a list (albeit was horizontally before I edited it.) The code is as follows.
HTML:
PHP:
<div id="navbar">
<ul>
<li><?php wp_list_pages('title_li=&depth=1'); ?></li>
</ul>
</div>
Many thanks for your help.#navbar ul {
list-style-type: none;
margin-left: -30px;
margin-bottom: 0px;
margin-right: 0px;
margin-top: -8px;
text-decoration: none;
padding: 0px;
}
#navbar ul li a {
border-spacing: 3px 3px;
margin-left: 730px;
margin-bottom: 0px;
margin-right: 50px;
margin-top: 80px;
font-family: Arial, Verdana, Sans-Serif;
font-size: 20px;
text-decoration: none;
display: inline;
}
Ps - I know everything is further down - it's the menu's margins.