May
20
Written by:
christopher
5/20/2009 12:45 PM
|
Here is an example of a skin.css file that has the .MainMenu_MenuItem width set to 0px As you can see, the skin.css file overrides default.css.
.MainMenu_MenuIcon {skin.css (line 103)
background-color:transparent;
border-style:none;
border-width:0;
width:0;
}
background-color:#EEEEEE;
border-bottom:1px solid #EEEEEE;
border-left:1px solid #EEEEEE;
border-top:1px solid #EEEEEE;
cursor:pointer;
height:21px;
text-align:center;
width:15px;
}
|
 |
|
Here is an example of a skin.css file that has the .MainMenu_MenuItem width set to 15px. This is the default value in the default.css file.
|
 |
|
|
Here is an example of a skin.css file that has the .MainMenu_MenuItem width set to 15px and a white border of 3px.
background-color:transparent;
border:3px solid #FFFFFF;
}
background-color:#EEEEEE;
border-bottom:1px solid #EEEEEE;
border-left:1px solid #EEEEEE;
border-top:1px solid #EEEEEE;
cursor:pointer;
height:21px;
text-align:center;
width:15px;
}
|
 |
|
Tags: