Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #14422
    chipbphoto
    Participant

    Good day – I have 2 questions.

    1 – I have tried to activate the Optional Sidebars. Unfortunately, when I drag/drop the widgets in the areas of Optional Sidebar One, Two or Three, the widget is not displayed. They work in the Main Sidebar only. I have also tried the same in the Optional Post Sidebar with no success. Can you help me resolve?

    2 – I would like to insert a thin horizontal line between each of the widgets in the Sidebar (main or other) to give better visual separation. Can you suggest code that would accomplish this?

    http://www.ChipBunnell.com/blog

    Thank you for your help!
    chip

    #14462
    Sakin
    Keymaster

    @chipbphoto:
    1. To activate the optional sidebar, you need to add widgets in Optional Sidebar and then you have to select the optional sidebar in “Catch Everest Options” Meta Box, Select Sidebar options.
    Also update your theme to latest version, as there was issue in post slider.

    2. To add horizontal line between each of the widgets in the Sidebar, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #secondary .widget { 
        border-bottom: 1px solid #e6e6e6;
        margin-bottom: 20px;
        padding-bottom: 20px; 
    }
    @media screen and (min-width: 1190px) {
    #secondary .widget {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    }
    @media screen and (max-width: 1060px) {
    #secondary .widget {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    }
    #15171
    chipbphoto
    Participant

    Works great – thank you @Sakin!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Optional Sidebars / Lines Separating Widgets’ is closed to new replies.