What is the correct way to apply CSS to the Category Menu? I notice a link in the ascx file ....\DesktopModules\CategoryMenu.ascx but I don't know where that CategoryMenu.css is. Could you tell me where in my DNN file structure I should put a portal specific stylesheet for Category Menu?
Today I upgraded from DNN 5.4.4 to DNN 5.5 and my Category Menu styling disappeared (this was using a trial you had provided a month or so ago). I had my styling in the page DNN skin.css file to get a horizontal effect (see excerpt from skin.css below). Then, BAM, after the DNN upgrade this was toast. (.category is my div class).
FYI, I did just purchase, install and license your latest Smith Cart today.
.category .Smith_CategoryMenuContent
{
padding: 0;
margin: 0;
position: relative;
float: left;
}
.category .Smith_CategoryMenuContent table
{
margin: 2px 0;
text-align: center;
position: relative;
top: 2px;
float: left;
}
* html .category .Smith_CategoryMenuContent table
{
padding: 0;
margin: 0 0 -1px 0;
top: -1px;
}
.category .Smith_CategoryMenuContent table img
{
width: 0px;
}
.category .Smith_CategoryMenuContent table a
{
padding: 5px 7px;
font: bold 14px Arial;
color: #fff;
border-right: solid 1px #fff;
}
* html .category .Smith_CategoryMenuContent table a
{
margin: 0;
line-height: 25px;
}
.category .Smith_CategoryMenuContent table a:hover
{
color: #012942;
text-decoration: none;
}