Changing BG color of solpart sub sub menu ????
Last Post 09/14/2010 12:35 AM by amol. 13 Replies.
Author Messages
amol
Posts:10


--
09/01/2010 6:49 AM
    Hi,

    I want to change bgcolor of second level sub menu in horizontal solpartmenu....

    as well as want to add child indicator arrow for sub menu....

    Help me plz

    thanks in advance
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    09/01/2010 6:41 PM
    You will need to identify the classes assigned to those items and adjust the styles applied to them. Usually, you will find the styles defined in the skin.css file.

    Joe Craig, Patapsco Research Group
    Complete DNN Support
    amol
    Posts:10


    --
    09/03/2010 6:38 AM
    Sorry to say but I was not able to do any changes in sub sub menu bg color.

    I have attached skin files with this.

    Plz do some thing about this.

    thanks
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    09/03/2010 7:13 AM
    The background color of the submenu items is determined by these styles:

    .MainMenu_SubMenu {
        Margin:0px;
        background-color: #e74d52;
        border-top: #1e3647 1px solid;
        border-right: #1e3647 1px solid;
        border-left: #1e3647 1px solid;
        border-bottom: #1e3647 1px solid;
        /*filter:progidXImageTransform.Microsoft.Shadow(color=#FFFFFF, Direction=180, Strength=0);   
        -moz-opacity:.9;
        filter:alpha(opacity=90);*/
        padding:0px;    font-weight: normal;
    }


    .dnn_dnnsolpartmenu_ctldnnsolpartmenu_spmsub .MainMenu_MenuItemSel {
        background-color:#e74d52;
        cursor: pointer;
        color:#ffffff;   
        text-decoration:underline;
        font-family: Tahoma,Arial, Helvetica, sans-serif;
        font-size: 11px!important;
        font-weight: normal;
        font-style: normal;
        border-bottom: #fa8389 1px solid;
        border-top: #ffffff 0px solid;
        padding:3px 5px;

    ----------

    You don't have a separate style for the sub-submenu items.

    I really would recommend that you switch to the DNN Nav Menu as it is much easier to style it.  Take a look at these tutorials.



    Joe Craig, Patapsco Research Group
    Complete DNN Support
    amol
    Posts:10


    --
    09/03/2010 7:20 AM
    Can U give referances with solpartmenu please ????
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    09/03/2010 7:22 AM
    Those styles are in your skin.css file.

    Joe Craig, Patapsco Research Group
    Complete DNN Support
    amol
    Posts:10


    --
    09/03/2010 7:33 AM
    ok, so we cant make different bg for sub menu & sub sub menu with solpart menu ???

    am I right ????
    amol
    Posts:10


    --
    09/03/2010 9:13 AM
    ok there is a small issue with same code, there is a 1 pix space in IE7 in between root menu & sub menu, how to remove that ???
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    09/03/2010 6:59 PM
    I'm sure that you can have different background colors.  But, I'm not that familiar with SOLPART as I've been using DNN NAV and other menus instead.  SOLPART is obsolete.  You should review the skinning tutorials and see how easy it is to use NAV.

    You might also consider Mark Allan's DDR menu (dnngarden.com).  It is a "drop in" replacement for both SOLPART and DNN NAV.  It's even better!

    The .MainMenu_MenuItem contains a border.  Set it to 0px and that space will disappear.

    Joe Craig, Patapsco Research Group
    Complete DNN Support
    amol
    Posts:10


    --
    09/13/2010 7:10 AM
    Helo,

    I m facing 1 issue, My sub menu hides behind layers can u check it please..

    http://skinner.in/danca/Home/tabid/...fault.aspx

    Thanks
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    09/13/2010 7:30 AM
    Am I supposed to see more than Home and Menu 2?

    Joe Craig, Patapsco Research Group
    Complete DNN Support
    amol
    Posts:10


    --
    09/13/2010 8:30 AM
    Sorry,

     I missed to attach files .. Menus under admin & host are also not visible properly.
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    09/13/2010 6:15 PM
    You probably need to use a z-index attribute to the menu and its parts to get it on top of the rest of the content.

    Joe Craig, Patapsco Research Group
    Complete DNN Support
    amol
    Posts:10


    --
    09/14/2010 12:35 AM
    Thanks for precious advice ..


    ---