/    Sign up×
Community /Pin to ProfileBookmark

Menu css help

I am currently working on a site for a customer and have recently gotten stuck on a bug that happens in IE6 & 7 that causes my css menu to get thicker. I have validated the CSS and it come back fine but the bug is still there. I know this doesnt effect how the page acts but it looks nicer without the added space. The menu is a css drop down. Any help would be appreciated.

CSS:

[CODE]body {
font-family: “Trebuchet MS”, Arial, sans-serif;
font-size: 100%;
background-color: #FFFFFF;
margin: 24px 0;
padding: 0;
background-image: url(images/p7exp_pbg.jpg);
background-repeat: repeat-x;
}
/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
It carries a background image for aesthetics.
*/
#menuwrapper {
border-top: 1px solid #000;
border-bottom: 1px solid #333;
background-color: #909090;
background-image: url(../images/p7exp_mbar.jpg);
background-repeat: repeat-x;

}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper’s closing DIV tag*/
.clearit {
clear: both;
height: 0;
line-height: 0.0;
font-size: 0;
}
/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#p7menubar, #p7menubar ul {
padding: 0;
margin: 0;
list-style: none;
font-family: Arial, Helvetica, sans-serif;
}
/*
Root-Level Links. Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#p7menubar a {
display: block;
text-decoration: none;
padding: 5px 10px 5px 10px;
border-right: 1px solid #333;
font-size: .85em;
color: #CCCCCC;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7menubar a.trigger {
padding: 5px 16px 5px 10px;
background-image: url(../images/p7PM_dark_south.gif);
background-repeat: no-repeat;
background-position: right center;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers – hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#p7menubar li {
float: left;
width: 9em;
}
/*
Sets width for Sub-Menu box and the List Items inside – in proportional em units.
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#p7menubar li ul, #p7menubar ul li {
width: 12em;
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#p7menubar ul li a {
color: #565656;
border-right: 0;
padding: 3px 12px 3px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping.
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#p7menubar li ul {
position: absolute;
display: none;
background-color: #FFFFFF;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
background-image: url(../images/p7exp_mgrad.jpg);
background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari – making the menu operable even if JavaScript
is not enabled.
*/
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
color: #000000;
background-color: #C19674;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#p7menubar li:hover ul, #p7menubar li.over ul{
display: block;
}
#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
color: #000000;
background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#p7menubar ul a:hover {
background-color: #606060!important;
color: #FFFFFF!important;
}
/* The single backslash character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#p7menubar li {width: auto;}[/CODE]

HTML include (for Header):

[code=html] <div id=”menuwrapper”>
<ul id=”p7menubar”>

<li><a href=”index.php” class=”active”><span>Home</span></a></li>

<!– Business –>

<li><a class=”trigger” href=”index.php?act=business”><span>Businesses</span></a>
<ul>
<li>
<a href=”index.php?act=DoingBusiness”><span>Doing Business</span></a>
</li>

<li>
<a href=”index.php?act=BusinessSpace”><span>Business Space</span></a>
</li>

<li>
<a href=”index.php?act=MembersOfMason”><span>Members of Mason</span></a>
</li>
</ul>
</li>

<!– End Business –>

<!– Community –>

<li><a class=”trigger” href=”index.php?act=BusinessSpace”><span>Community</span></a>
<ul>

<li>
<a href=”index.php?act=apartments”><span>Apartments</span></a>
</li>

<li>
<a href=”index.php?act=internship”><span>Internship</span></a>
</li>

<li>
<a href=”index.php?act=volunteer”><span>Volunteer</span></a>
</li>

<li>
<a href=”index.php?act=awards”><span>Awards</span></a>
</li>

<li>
<a href=”gallery2/main.php” target=”_blank”><span>Photo Album</span></a>
</li>
</ul>
</li>

<!– End Community –>

<!– Events –>

<li><a class=”trigger” href=”calendar.php”><span>Events</span></a>
<ul>
<li>
<a href=”index.php?act=newsletter”><span>Newsletter</span></a>
</li>

<li>
<a href=”index.php?act=stream”><span>Live Cam of Mason</span></a>
</li>

<li>
<a href=”http://74.204.31.89/WebCalendar-1.2.0/month.php” target=”_blank”><span>Calendar</span></a>
</li>

<li>
<a href=”http://masoncommerce.blogspot.com” target=”_blank”><span>Blog</span></a>
</li>
</ul>
</li>

<!– End Events –>

<li><a href=”index.php?act=devland”><span>Developmental Land</span></a></li>

<!– Gift Shop –>

<li><a class=”trigger” href=”#”><span>Gift Shop</span></a>
<ul>
<li>
<a href=”http://www.cafepress.com/masonchamber” target=”_blank”><span>Clothes</span></a>
</li>

<li>
<a href=”index.php?act=giftcert”><span>Gift Certificates</span></a>
</li>
</ul>
</li>

<!– End Gift Shop –>

<li id=”login”><a href=”index.php?act=login”><span>Login</span></a></li>

<!– Search Form –>

<li id=”searchform”><span></span>

<form action=”search.php” method=”get”>
<input type=”text” name=”search” size=”12″ style=”font-size: 12px; width: 90px;” maxlength=”20″ value=”” />
<input type=”submit” name=”submit” value=”Submit” style=”height: 25px;” size=”10″ />
</form>

</li>

<!– End Search Form –>

</ul>

<br class=”clearit”>

</div>[/code]

the ip i will post later since the server is having problems with external access.

to post a comment
CSS

2 Comments(s)

Copy linkTweet thisAlerts:
@w3bd3vauthorJun 30.2009 — the ip is 99.147.183.229
Copy linkTweet thisAlerts:
@aj_nscJun 30.2009 — bet you $10000000000000000000 it's the 'clearit' div (EDIT: i mean br) that's doing it. I must've seen ten posts like this, just this month. That's the old way of clearing floats, with extra markup, the proper way of clearing floats now is to add the following CSS to the containing element:

<i>
</i>overflow: hidden;
width: 100%; /* triggers 'hasLayout' for IE7 which allows the overflow: hidden to do it's job properly */


You might also need to add height: 1%; in an IE6 stylesheet, I can't remember if width: 100% will take care of IE6 or not.....
×

Success!

Help @w3bd3v spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.16,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...