• The site I’m trying to change the sidebar on is: towerfruitshop.com.au

    Just wondering how I can make the left sidebar a fixed width – preferably so each page title is on one line not two, one each page.

    Currently the width changes on different pages (such as the contact page.)

    Help appreciated, thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter wrylilt

    (@wrylilt)

    No ideas?

    Hello wrylilt,

    You can do fixed width by adding the CSS for it in custom.css: Dashboard -> Appearance -> Editor -> custom.css. Here is something that might do the trick:

    #sidebarleft
    {
        width: 300px; /* use preferred size here */
    }

    If you do not want word wrap within the sidebar, you ca add:

    #sidebarleft
    {
        white-space: no-break;
    }

    You may prefer to do the above only for the page list widget.

    Thread Starter wrylilt

    (@wrylilt)

    Thank you very much, that worked perfectly! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Making left sidebar keep single size…’ is closed to new replies.