• Is there anyway to remove the button which hides and displays the widgets and have all widgets permanently displayed?

    I’ve opted to use widgets for navigation as opposed to the traditional menu system, but it’s a little awkward especially when you click on the circle its not clear that something has expanded off screen.

    Also the button itself is just very low, it perhaps wouldn’t be as trouble some were it over the circles instead of underneath.

    Thanks!

    http://solfulsoul.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Is there anyway to remove the button which hides and displays the widgets and have all widgets permanently displayed?

    Yes, you use CSS to display the widgets,

    .widget-area {
     display: block;
    }

    Then CSS to hide the button,

    .sidebar-link {
     display: none;
    }

    Use Jetpack’s “Edit CSS” option to hold your CSS modifications: http://jetpack.me/support/custom-css/

    Thread Starter miharbio

    (@miharbio)

    Awesome! Thanks!

    Just one more question though, where would I place this bit of code to render the effect all over the website? Will just the main index file do?

    Thread Starter miharbio

    (@miharbio)

    I see this:

    By default, your stylesheet will be loaded after the theme stylesheets,
    which means that your rules can take precedence and override the theme CSS
    rules. Just write here what you want to change, you don’t need to copy all
    your theme’s stylesheet content.
    */

    but just putting the code you gave me does not do anything actually…, am I missing something else?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘permanent widget display’ is closed to new replies.