Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #181592

    George H
    Participant

    I’m thinking i’ll have to rollback to my previous version of X

    #181920

    Christopher
    Moderator

    Hi there,

    Please clear browser cache and deactivate any cache plugin and check again.

    More information : https://theme.co/x/member/forums/topic/release-notes-x-v3-1-1-x-shortcodes-v2-6-1/#notes.

    Thank you.

    #182410

    George H
    Participant

    Thank you, i read through those notes. My menu drop down is the only thing not working now after clearing cache, plugins etc.

    Also, I cannot change the circle logo for the header widget to an align-justify logo.

    Can you confirm the code required to add to the renew child theme stylesheet?

    Thank you.

    #182871

    John Ezra
    Member

    Hi there,

    Thanks for updating us. If I understand correctly you want the nave and header widget toggle to align with the logo?
    You can add this under Custom > CSS in the Customizer.

    .x-icon-plus-circle:before {
        content: "\f0c9";
    }
    
    a.x-btn-widgetbar.collapsed, a.x-btn-widgetbar {
        margin-top: 15px;
    }
    
    a.x-btn-widgetbar.collapsed, a.x-btn-widgetbar  {
        margin-right: 15px;
    }
    
    .desktop .x-nav > li:hover > .sub-menu {display: block}
    
    ul#menu-top-menu {
        margin-top: 10px;
    }
    
    li#menu-item-1714 ul {
        margin-top: -15px;
    }

    Hope this helps!

    #183212

    George H
    Participant

    Hey,

    Thanks the code’s above work great, but still one problem. The header widget button is still the plus-circle icon and not the align-justify icon.

    I have tried to use \f039 but it does not work.

    #183592

    Zeshan
    Member

    Hi George,

    Thanks for writing in!

    In that case, please either use the previous provided code in your child theme’s style.css file or following instead of the previous code under Custom > CSS in the Customizer:

    .x-icon-plus-circle:before {
        content: "\\f0c9";
    }
    
    a.x-btn-widgetbar.collapsed, a.x-btn-widgetbar {
        margin-top: 15px;
    }
    
    a.x-btn-widgetbar.collapsed, a.x-btn-widgetbar  {
        margin-right: 15px;
    }
    
    .desktop .x-nav > li:hover > .sub-menu {display: block}
    
    ul#menu-top-menu {
        margin-top: 10px;
    }
    
    li#menu-item-1714 ul {
        margin-top: -15px;
    }
    

    Hope this helps. 🙂

    Thank you.