Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1302208

    Hey, can you guys help me? I’ve got a few things I want to fix

    I enabled the Social Icons for the sidebar in the Main Menu settings, for some reason the social icons doesn’t seem to stay at the very bottom of the sidebar, rather it sticks to where the menu links end.

    Also I want to lessen the gap between the top logo and the menu links.

    Lastly, is there a way to make the main content move to the left side of the screen while in the Boxed layout, instead of it being in the middle?

    Thanks!

    #1302530

    Hey orchestramegastore,

    Thank you for the inquiry.

    That is the default position of the social icons inside the sidebar. If you want to adjust it, we can use this css code.

    .html_header_sidebar #header .container .inner-container {
        height: 100vh;
    }
    
    .html_header_sidebar .av-sidebar-social-container {
        position: absolute;
        overflow: hidden;
        bottom: 0;
        top: auto;
    }

    To lessen the gap between the logo and the main menu, use this css code.

    .html_header_sidebar .main_menu {
        top: -25px;
    }

    For the content layout, try to look for the Content Alignment settings inside the Enfold > General Layout > Layout panel.

    Best regards,
    Ismael

    #1302538

    Thanks for the reply! The css codes worked great, but now I cant select or highlight any of the social icons.

    Also for the boxed layout I mentioned before, the content alignment option wasn’t the option I was looking for. If you can check our website right now, you’ll see there are grey pillarboxes on the page due to it being in the boxed layout. What I’d like to do is move all these grey spaces to the right so the main content window starts from the very left side. Is that in any way possible? I appreciate the help, thank you!

    #1302805

    Hi,

    but now I cant select or highlight any of the social icons.

    Try to increase the z-index property of the social icon container, or replace the css rule above with this one.

    .html_header_sidebar .av-sidebar-social-container {
        position: absolute;
        overflow: hidden;
        bottom: 0;
        top: auto;
        z-index: 9999;
    }
    

    For the layout issue or modification, try to use this css code to move the body content to the left.

    .boxed#top {
    	margin: 0 !important;
    }
    

    Best regards,
    Ismael

    #1303093

    The codes are working as expected, thank you!

    #1303307

    Hi,

    Did you need additional help with this topic or shall we close?

    Best regards,
    Jordan Shannon

    #1303339

    You may close this topic, thank you!

    #1303517

    Hi,

    Thanks for letting us know, I’ll go ahead and close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Sidebar social icons not at the bottom’ is closed to new replies.