Products

Solutions

Resources

Partners

Community

About

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...why in IE I canwhy in IE I can't see the space between the menu items in the main bar but in FF it is displayed rig
Previous
 
Next
New Post
3/29/2007 6:10 PM
 
Hi
Can anyone tell why in IE I can't see the space between the menu items in the main bar but in FF it is displayed right?
The css is :
/** Menu */
 
.MainMenu_MenuContainer {
 background-color: transparent;
 width: 90%;
 border-bottom: white 2px solid;
 border-left: white 0px solid;
 border-top: white 2px solid; 
 border-right: white 0px solid;
 margin: 0px 2px 0px 2px;
 
}
.rootmenuitem TD{
 font-family:Arial;
 color:#297EBC;
 font-size:14px; font-weight:bold; letter-spacing:-1px;
 padding:0px; text-align:center;
 margin: 0px 2px 0px 2px;
 background:transparent;
 width:100px; height:28px; display:block; line-height:28px;
 border-right:1px #5590C1 solid;
        border-left:1px #5590C1 solid;
 border-top:1px #5590C1 solid;
        border-bottom:1px #5590C1 solid;
}
.rootmenuitemselected TD,.rootmenuitembreadcrumb TD{
 font-family:Arial;
 color:#97C1E1;
 font-size:14px; font-weight:bold; letter-spacing:-1px;
 padding:0px; text-align:center;
 background:#297EBC;
 width:100px; height:28px; display:block; line-height:28px;
 border-right:0px #5590C1 solid;
}
 
.rootmenuitem{
/*The root menu items  */
 color: #297EBC;
 text-decoration: none;
 font-weight: bold;
 font-family: Arial, Helvetica, Verdana;
 font-size: 14px;
 cursor: hand;
 border-top: 1px solid #297EBC;
 border-left: 1px solid #297EBC;
 border-bottom: 1px solid #297EBC;
}
.separator{
 color: #C05044;
 background-color: #D3E9A0;
}
.separator_bott{
 color: #E2A5A7;
}
.rootmenuitemselected{
/*The root menu item when mouse over it */
 color: white;
 text-decoration: none;
 font-weight: normal;
 font-family: Arial, Helvetica, Verdana;
 background: #297EBC; 
 font-size: 14px;
 cursor: hand;
 text-align: center;
 padding: 1px;
 

}
.rootmenuitembreadcrumb{
/* CSS Class used for sub menu items when they are found in the breadcrumb array list */
  cursor: hand;
}
.submenu{
/* css class for the properties of the submenu items that are not in the mneuitem class */
 z-index:1000;
 border:0px;
 padding-left:0px;
 padding-right:0px;
        margin-left:0px;
 background:white;
 filter:progid:DXImageTransform.Microsoft.Shadow(color='#333333', Direction=135, Strength=4);
 
}
.menuitem{
/* css class for the menu items including root and Submenu
    
 
 */
 font-weight: normal;
 font-family: Arial, Helvetica, Verdana;
 font-size: 14px;
 font-weight: bold;
 color: #297EBC;
 padding: 3px 6px 3px 6px;
 border-top: 0px dashed #297EBC;
 border-left: 1px solid #297EBC;
 border-bottom: 1px dashed #297EBC;
 border-right: 1px solid #297EBC;
 
}
 

.submenuitemselected{
/* CSS Class used for sub menu items when they moused-over */
 font-weight: normal;
 font-family: Arial, Helvetica, Verdana;
 font-size: 14px;
 font-weight: bold;
 color: #ffffff;
 background: #297EBC; 
 padding: 3px 6px 3px 6px;
 border-top: 1px solid #297EBC;
 border-left: 1px solid #297EBC;
 border-bottom: 1px solid #297EBC;
 border-right: 1px solid #297EBC;
}
.submenuitemactive{
/* CSS Class used for sub menu items when they are the active tab */
}
 

.submenuitembreadcrumb{
/* CSS Class used for sub menu items when they are found in the breadcrumb array list */
 color: white;
 text-decoration: none;
 font-weight: bold;
 font-family: Arial, Helvetica, Verdana;
 background: #F17C67; 
 font-size: 14px;
 padding: 1px;
 border-bottom: #8E1F0D 1px solid;
 border-left: #8E1F0D 0px solid;
 border-top: #8E1F0D 0px solid; 
 border-right: #8E1F0D 0px solid;
 filter: alpha(Opacity=90);
}
.rootmenuitemactive{
/* CSS Class used for root menu items when they are the active tab */
 color: #ffffff;
 text-decoration: none;
 font-weight: normal;
 font-family: Arial, Helvetica, Verdana;
 background: #297EBC;
 font-size: 14px;
 padding: 1px;
 border-bottom: #8E1F0D 1px solid;
 border-left: #8E1F0D 0px solid;
 border-top: #8E1F0D 0px solid; 
 border-right: #8E1F0D 0px solid;
}
.MainMenu_MenuIcon{
display: none;
}
 
.MainMenu_MenuArrow
{
    display: none;
}
 
T.
Thanks

Yehuda Tiram
AtarimTR
AtarimTR
972-2-5700114   |   972-54-4525492   |    http://www.atarimtr.co.il
 
New Post
3/30/2007 7:37 PM
 
Mostly these kind of problems are related to the fact that IE interprets the box model incorrectly.
an element with
    width:100px;
    padding-left:3px;

The width of the element should be rendered as 103px and not 100.
(not very logical IMHO, but it's the CSS 2.1 standard)
 
New Post
3/31/2007 8:56 AM
 

Hi,

Thanks for your reply, but the padding did not fix this.

T.


Yehuda Tiram
AtarimTR
AtarimTR
972-2-5700114   |   972-54-4525492   |    http://www.atarimtr.co.il
 
New Post
3/31/2007 10:50 PM
 
if you are using solpartmenu token, perhaps you want to explore the leftseparator and rightseparator attributes. add a spacer image (transparent gif) with the minimum width.

Warm Regards,

Ed Borhan [ evolve | build | connect ]

A DotNetNuker Since 2005 (v 03.00.11)

Ed Borhan > adaptive webware
Think Gold Internet (TGI)
 
New Post
4/8/2007 2:28 AM
 

Hi Borhan,

Thanks for the idea. Should have think about it myself.

I inserted a   as a separator and configure it with the css to do what I needed.

Thanks,

T


Yehuda Tiram
AtarimTR
AtarimTR
972-2-5700114   |   972-54-4525492   |    http://www.atarimtr.co.il
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...why in IE I canwhy in IE I can't see the space between the menu items in the main bar but in FF it is displayed rig


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out