Jump to content

beepbeep

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

beepbeep's Achievements

  1. So I was able to get rid of the bullets, but I have these brackets showing up above the menu bar, and I can't find where to get rid of them. This is my header: <span style="font-size:16px;"></span><img alt="Logo" src="insertlogoimage" /> <br />[@app:StudentNavMenu] <span style="font-size:16px;"><strong><span style="color:#1F7F9b;"><br>Approved Schedule:&nbsp;</span><span style="color:#D45B25;">[@field:FirstName]&nbsp;[@field:LastName]</span></strong></span><br /> &nbsp; This is my app parameter: <style> ul { list-style-type: none; margin: auto; padding: 0; overflow: hidden; background-color: #1f7f98; } li { float: left; } li a { display: block; color: white; text-align: center; font-size: 15 px; font-weight: bold; padding: 14px 16px; text-decoration: none; line-height: 12px; height: 16px; } li a:hover { background-color: #D45b25; } </style> </head> <body> <ul> <li><a class="active" href="#home">Home</a></li> <li><a href="#news">Approved Schedule</a></li> <li><a href="#contact">Course Request</a></li> <li><a href="#about">Elective Catalog</a></li> <li><a href="#about">Logout</a></li> </ul> </body> </html>
  2. <style> ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; } li { float: right; } li a { display: block; padding: 8px; background-color: #dddddd; } </style> <ul> <li><a href="#home">Home</a></li> <li><a href="#news">News</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#about">About</a></li> </ul> <p></p>
  3. I'm creating a navigation menu so that my users can jump between data pages easily. I've watched Ned's Youtube video and pulled the CSS from W3schools, but when I get it set up I always have these bullets above the menu. Does anyone have any idea what is causing this or how to get rid of the bullets?
×
×
  • Create New...