Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #378155

    1. How can I change the color of the right sidebar background? I see the code you gave a while ago: #top #main .sidebar {background:#f9f9f9} however, that leaves a “main content color” margin to the right of it. I want my chosen sidebar background color to span all the way to the right edge of the screen.

    2. And…how can I remove the vertical line that is the left edge of the sidebar area?

    As per your request, here is the thread in your support, I’d appreciate a timely response, thank you.

    #378541

    Hi joerare!

    This is kind of a difficult thing to do actually. You can try something like this.

    #top #main .sidebar { width: 400px !important; padding-right: 9999px !important; background: red !important; }
    

    But it’s probably not going to look right in all screen sizes and it’s still not going to cover the height of the sidebar in case your main content is longer.

    You could also try creating a background image with half of it your main content and the other half your sidebar and then try using that but I’m not sure if it would work either.

    As for the border you can use this CSS.

    main { border-right: 0px !important; }
    aside { border-left: 0px !important; }
    

    Best regards,
    Elliott

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.