Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #896555

    Dear support.
    I need the all subpages to be shown in sidebar?
    How can I make it?
    Thank you in advance.

    #897156

    Hey AliAbabwa,

    Try adding this css code in QUick CSS (located in Enfold > General Styling):

    #top .sidebar .widget_nav_menu .nested_nav .children {
        display: list-item;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #897444

    Thank you, Nikko.
    Could you please help me with background of subpages (100% of width)? Because now the style of subpages in sidebar bold only (without background).

    https://netpics.org/image/SJbWM

    #897577

    Hi,

    Try to replace the code that I gave above with this:

    #top .widget_nav_menu {
        margin-left: -50px;
    }
    
    #top .sidebar .widget_nav_menu .nested_nav .children {
        display: list-item;
        background: #f1f1f1;
        padding-left: 0;
    }
    
    #top .sidebar .widget_nav_menu .nested_nav .children li {
        border: 1px solid #ccc;
        border-left: 0;
        margin-top: -1px;
    }
    
    #top .widget_nav_menu ul ul li:before {
        left: 50px;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #897634

    Thank you for soon answer, Nikko.
    But I mean this background for active page only (not for all pages).

    #897656

    Hi,

    Try replacing the code I gave with this instead:

    #top .widget_nav_menu {
        margin-left: -50px;
    }
    
    #top .sidebar .widget_nav_menu .nested_nav .children {
        display: list-item;
        padding-left: 0;
    }
    
    top .sidebar .widget_nav_menu .nested_nav li.current_page_item {
        background: #f1f1f1;
        border: 1px solid #ccc;
        border-left: 0;
        margin-top: -1px;
    }
    
    #top .sidebar .widget_nav_menu .nested_nav li a {
        margin-left: 50px;
    }
    
    #top .widget_nav_menu ul ul li:before {
        left: 50px;
    }

    Best regards,
    Nikko

    #897662

    Undortunately the style of subpages in sidebar still bold only (without grey background).

    #897714

    Hi,

    I missed a # on the code above:

    top .sidebar .widget_nav_menu .nested_nav li.current_page_item {
        background: #f1f1f1;
        border: 1px solid #ccc;
        border-left: 0;
        margin-top: -1px;
    }
    

    it should be:

    #top .sidebar .widget_nav_menu .nested_nav li.current_page_item {
        background: #f1f1f1;
        border: 1px solid #ccc;
        border-left: 0;
        margin-top: -1px;
    }
    

    Best regards,
    Nikko

    #897952

    Great, thank’s a lot, Nikko!

    #898106

    Hi,

    You’re welcome. Thanks for using Enfold and have a nice day :)

    Best regards,
    Nikko

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.