• Resolved drrule

    (@drrule)


    Hello,

    I have used this css to try and get the sidebar to 300 to only get the result of the sidebar now being at the bottom of the page. Can you help me out please? Here is the link if it helps. Thanks! https://www.scribblesandcrumbs.com/

    .two-column #sidebar, .two-column #secondary-sidebar {
    text-align: left;
    width: 300px;
    }

Viewing 1 replies (of 1 total)
  • Hi there!

    That’s because your page is in a ‘container’ that is constrained to 740px max width so the sidebar is being pushed down.

    Try increasing the the max-width and it should pop back up to the top.

    .two-column #container {
      max-width: 987px;
    }

    You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.

    I hope that helps!

    Luke the Daft Duke

Viewing 1 replies (of 1 total)
  • The topic ‘Adjust Sidebar to 300’ is closed to new replies.