Can I change the sidebar in the rowling theme from the right to the left?

  • Unknown's avatar

    I am using the rowling theme which has the sidebar on the right by default. I would like to change it and move the sidebar to the right of the page. Is there any possibility to do this changing the css code?

    The blog I need help with is: (visible only to logged in users)

  • Hey there, it’s a little complicated, but give this a try:

    @media (min-width: 851px) {
      .sidebar {
        float: left;
        padding: 50px 3.75% 50px 0;
        border-left: none;
      }
      .content {
        float: right;
      }
      .content::before {
        right: -10000px;
        left: 28.5%;
      }
      .wrapper:after {
        background: transparent;
        border-right: 1px solid rgba(0,0,0,0.2);
        border-left: none;
        left: 0;
      }
    }
  • The topic ‘Can I change the sidebar in the rowling theme from the right to the left?’ is closed to new replies.