• Resolved terrimiyamoto

    (@terrimiyamoto)


    Something that we’ve done recently has moved the sidebar down the page, to below the page content. It’s still on the right, but not next to the content. The web site is
    https://crozetchorus.org/
    Suggestions for steps to find the problem?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Suggestions for steps to find the problem?

    use a browser inspection tool to investigate the formatting of your site.

    to make the sidebar narrower, format .site-content .widget-area;

    i.e. use:

    /* Make sidebar narrower */
    .content-area {
    	float: left;
    	width: 70.104166667%;
    }
    .site-content .widget-area {
    	float: right;
    	width: 25.5%;
    }
    Thread Starter terrimiyamoto

    (@terrimiyamoto)

    Thank you. Although — I had exactly that code in there, and removing it fixed the problem.
    I don’t know why. But as long as it looks OK, I’m OK.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sidebar on default page layout has moved below content’ is closed to new replies.