• Resolved jazzu

    (@jazzu)


    Hello!

    I want to change primary sidebar’s width and position. For some reason the sidebar takes lika a quarter of the page, and I want the page’s content to take most of the site’s width.

    I’ll attach a screenshot of the page, so you can see what I mean.

    Thank you for your help!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter jazzu

    (@jazzu)

    I managed to fix it.

    If anyone needs help with it, here’s how I did it:

    Go to inspect element, fiddle with it until you find div.sidebar-main, go to the style.css, and it should show .sidebar-content-area {.

    I added .sidebar-main { above it, and then (with the borders of the sidebar box showing) played around with width. Sidebar-main controls the right side of the sidebar and .sidebar-content-area { controls the left side.

    In my case, I used this:

    .sidebar-main {
      position:absolute;
      float: left;
      width: 33.3%;
    }
    .sidebar-content-area {
      width: 5%;
      box-sizing: border-box;
      float: right;
    }

    Hope this helps.

    • This reply was modified 3 years, 4 months ago by jazzu.
Viewing 1 replies (of 1 total)
  • The topic ‘Sidebar’ is closed to new replies.