• Resolved florinangelescu

    (@florinangelescu)


    Hi,

    I am using the Hueman theme on my website https://www.florinangelescu.ro
    I am trying to get a larger central area (content between the sidebars) and also to have the second sidebar to the same dimension as the first one.
    For now I have it on the same dimension but the background of the second sidebar is mixed up between white and gray.
    Can you help fix the issue and get a larger content area (while keeping the whole frame centered in the browser)?

    Thanks in advance!
    Florin

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi florinangelescu. For the desktop view you’d probably need to copy /img/sidebar/s-right-s2.png into a child theme and change the width. The mobile views use different sidebar background images based on the viewport width.

    Thread Starter florinangelescu

    (@florinangelescu)

    But I think the background is just color and no image.
    I managed to make it work some while ago but lost my child theme.
    Now I upgraded and all my changes are lost. I am trying to get the old looks back and this is the last thing I need to fix.
    Any other ideas?

    This css is currently being applied to the main content area. The image is pushed to the right edge of the area which is under the sidebar. You set the sidebar width to 340px but the image is only 260px wide:

    .col-3cm .main {
      background: url(img/sidebar/s-right-s2.png) repeat-y right 0;
    }

    If you change it to use the inner content area image, which is 340px wide, it will fill in the secondary sidebar background:

    .col-3cm .main {
      background: url(img/sidebar/s-left.png) repeat-y right 0;
    }

    I don’t know if that change will result in other issues when the sidebars are adjusted in responsive mode. I think the secondary sidebar is reset to 260px and collapses first in the mobile view so it may turn out ok; you’ll just need to test it.

    Thread Starter florinangelescu

    (@florinangelescu)

    It worked like a charm.
    Thank you very much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Larger center area and proper sidebar’ is closed to new replies.