Just wondering how can I move the links down just a little bit within the navigation menu. My idea would be to add padding within the parent div of the navcontainer but that doesn't seem to be working.
HTML Code:<div id="navcontainer"> <ul> <li><a href="index.html">Home</a></li> <li><a href="schedule.html">Schedule</a></li> <li><a href="roster.html">Roster</a></li> <li><a href="about.html">About</a></li> <li><a href="#">Media</a></li> <li><a href="contact.html">Contact</a></li> </ul> </div>Code:/* CSS Document */ /* UNIVERSAL STYLE */ html,body{ width: 100%; background:url(images/background2.jpg)no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; height:100%; padding-top: 0px; padding-bottom: 0px; font-family:"Myriad Pro","Trebuchet MS", sans-serif; } h1{ border-bottom:thin; border-image:url(images/Groove.jpg); } #form{ width:50%; } .footer, .push { height: 2em; clear:both; } .center{ margin-left:auto; margin-right: auto; } .page_heading{ padding-left:10px; text-align:left; } .shadow_other { -moz-box-shadow: 3px 3px 4px #000; -webkit-box-shadow: 3px 3px 4px #000; box-shadow: 3px 3px 4px #000; /* For IE 8 */ -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')"; /* For IE 5.5 - 7 */ filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000'); } #container{ background:url(images/Metal_Container.jpg); background-repeat:no-repeat; height: auto !important; height: 100%; width:800px; padding-top:20px; margin-left:auto; margin-right: auto; -moz-box-shadow: 0px 3px 4px 6px #000; -webkit-box-shadow: 0px 3px 4px 6px#000; box-shadow: 0px 3px 4px 6px#000; } #footer { height:100%; width:100%; } #header{ width:800px; text-align:center; } #links{ margin-top:-20px; } #groove_img{ margin-top: 20px; -moz-box-shadow: 0px -1px 5px #000; -webkit-box-shadow: 0px -1px 5px #000; box-shadow: 0px -1px 5px #000; } #groove_img_low{ -moz-box-shadow: 0px 1px 5px #000; -webkit-box-shadow: 0px 1px 5px #000; box-shadow: 0px 1px 5px #000; } #groove_footer_top{ padding-bottom: 13px; } #menu{ width:100%; } #table_footer{ margin-left:16%; padding-bottom:10px; } #navcontainer{ width:100%; height:100% } #navcontainer ul { list-style-type: none; height:25px; margin: 0; padding: 0; text-align: center; background:url(images/Carbon_Fibre.jpg); color:#FFF; font-size:15px; } #navcontainer ul a{ padding-left:13px; } #navcontainer ul li { display: inline; } #navcontainer ul li a { text-decoration: none; padding: .2em 1em; color:#FFF; } #navcontainer ul li a:hover { color: #fff; background-color: #369; } .footer_h1{ text-align:left; text-shadow: 0px 1px 0px rgba(255,255,255,.5); font-size:16px; font-weight:bold; } .margin{ margin-left:30px; } .footer_h2{ text-shadow: 0px 1px 0px rgba(255,255,255,.5); font-weight:800; font-size:12.5px; text-decoration:none; color:#000; } #header_img{ margin-top:10px; } .img-resize{ width:100%; } .heading_h1{ font-size:20px; font-weight:bold; } .heading_h2{ font-size:15px; font-weight:700; } /* SCHEDULE STYLE */ #sched_table{ line-height:10%; font-size:15px; } .tourney_table{ border-bottom:thin; border-bottom-color:#000; text-align:left; } .align{ text-align:left; }


Reply With Quote
Bookmarks