Forums

Making left sidebar keep single size... (4 posts)

  1. wrylilt
    Member
    Posted 10 months ago #

    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!

  2. wrylilt
    Member
    Posted 10 months ago #

    No ideas?

  3. ravisarma
    Member
    Posted 10 months ago #

    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.

  4. wrylilt
    Member
    Posted 10 months ago #

    Thank you very much, that worked perfectly! :)

Reply

You must log in to post.

About this Topic