Problem with inline navbar and question on webfonts

Associate
Joined
20 Sep 2003
Posts
2,384
Location
Scotland
I am working on this little project

http://www.rdoyle.info/projects/gordonstaxis/v3/

As you can see there is an issue with the navbar, all the links should be inline but are showing as a list. I have this code which I would have thought would force it to be inline?

Code:
.nav {
	margin: 0px;
	padding: 0px;
	text-align: center;
}

nav li {
	display: inline;
}

.nav a {
	display: inline-block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #ffffff;
	padding: 10px;
	text-transform: uppercase;
	text-decoration: none;
}

I'd also like to make the banner into web fonts making it more efficient when loading and in search results. How can I go about this?

Cheers!
 
Cheers mate, was up at 5am this morning looking at that so that might answer as to why I didn't see the missing . ;)

Time to go and read up on these web fonts.

One other thing, the nav links need better spacing both horizontally and vertically, any tips on that?
 
Sorry 2 more questions :D

How can I get the links to center vertically on the navbar?

How can I get the yellow main backround to extend a little further below the footer?...... as shown here.
 
Back
Top Bottom