I have this in my CSS:
.MainMenu
{
position: absolute;
top:105px;
left:15px;
background-color: #67E300;
color:White;
border-style:double;
border-color:White;
list-style-type:none;
}
And this inside of the MasterPage:
<div class="MainMenu">
<uc2:MainMenu ID="MainMenu1" runat="server" />
</div>
And finally this code inside of the UserControl MainMenu:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MainMenu.ascx.cs" Inherits="LoCompro.UserControls.MainMenu" %>
<ul>
<li>Inico</li>
<li>Navegar Por Categoria</li>
<li>Navegar Por Marca</li>
<li>Buscar</li>
</ul>
Edit (forgot to ask the question, lol):
Using that code doesn't delete the bullet list. I don't want any bullets because I want to simulate a menu.
Thanks guys. :D