KDM Posted June 6, 2011 Share Posted June 6, 2011 http://capitolinvestmententerprises.com/ Quote Link to comment Share on other sites More sharing options...
KDM Posted June 6, 2011 Author Share Posted June 6, 2011 I think I might have to put the images in a table. Quote Link to comment Share on other sites More sharing options...
Adam Posted June 6, 2011 Share Posted June 6, 2011 Try adding display:inline to a shared class between the map tags. Quote Link to comment Share on other sites More sharing options...
KDM Posted June 6, 2011 Author Share Posted June 6, 2011 I just put them in a table. It looks fine now. Quote Link to comment Share on other sites More sharing options...
jedeye Posted June 6, 2011 Share Posted June 6, 2011 I just put them in a table. It looks fine now. no tables since i cant see how it was before here is some base for a horizontal nav ul#menu { float: right; /* or use left */ margin: -65px 0px 0px 0px; /*aligns the menu along the y-axis */ } ul#menu li { display: inline; /* crucial */ margin: 0px auto; padding: 0px; text-align: center; /*optional */ } ul#menu li a { color: #FF6600; display: block; /* crucial - makes the entire block a href */ float: left; margin: 0px 0px 0px 35px; /* use margin here to push and pull links together - prolly you error of trouble last time */ padding: 0px 0px 0px 5px; text-decoration: none; /*optional */ } ul#menu li a:hover, #menu li.current a, #menu li a:focus { /* will take care of all mouse-over states */ border-bottom: 2px solid #FF6600; color: #FFF; } Quote Link to comment Share on other sites More sharing options...
Adam Posted June 6, 2011 Share Posted June 6, 2011 I just put them in a table. It looks fine now. Oh dear.. All you needed to add was the display:inline - I tested it with Firebug. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.