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

    Hi, there

    I tried to relocate sidebar on the page to the left side but noticed that bullets still remained to the right side of text.
    so I added code like below but somehow clicking is not working properly. I could not click correctly.
    could you help me out to relocate sidebar on the page to the left correctly?

    .sidebar_left.sidebar {
    text-align: left;
    }

    #top .sidebar_left .widget_nav_menu ul ul li:before {
    left: 0;
    }

    #231685

    Hey niceenfold!

    Can you post the link to your website so we can take a look?

    Cheers!
    Yigit

    #232218
    This reply has been marked as private.
    #232714

    Hi!

    Seems like you have already figured it out. This is how i see your page with clean cache http://i.imgur.com/rm7JDA0.jpg

    Regards,
    Yigit

    #232745
    This reply has been marked as private.
    #232750

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    #top .widget_nav_menu ul ul li:after {
    content: "\2219";
    position: absolute;
    top: 5px;
    }
    #top .widget_nav_menu ul ul li:before { display: none; }

    It will move the dots to the left side and remove the dots on the right side

    Best regards,
    Yigit

    #267450

    Hey Yigit – I was just looking for something like this. however I wonder if it is possible to choose to which sidebar the change is applied.
    F.e. i want to only the standard sidebar to be justified to the left – the other to the right.
    is that possible? if yes how?

    thanks so much!
    aovivo

    #267489

    Hey!

    The problem is that the sidebar doesn’t get a class so we can’t target it specifically, one thing you can do though is target the Page ID:

    #top.page-id-xxx .widget_nav_menu ul ul li:after {
    content: "\2219";
    position: absolute;
    top: 5px;
    }
    #top.page-id-xxx .widget_nav_menu ul ul li:before { display: none; }

    Regards,
    Josue

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