Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #257385

    Hi,

    Is there any way to change the color of the sidebar?

    Thanks.

    #257755

    Hi wackyadventurer!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top #main .sidebar { background-color: red; }

    and adjust as needed

    Best regards,
    Yigit

    #361515

    Is it possible to color the entire sidebar area, basically, from where the border begins to the edge and all the way to the footer?

    #361914

    Hey!

    I’m sorry but the height of the sidebar will depend on the number of widgets inside of it. You need to create a script that will get the height of the content container and apply it on the sidebar. This way, the sidebar will always have the same the height as the content container. You can then apply the css code above. Something like this: http://stackoverflow.com/questions/3275850/set-a-div-height-equal-with-of-another-div

    Regards,
    Ismael

    #362032

    Thanks for quick reply!

    Will look into it!

    #362045

    Maybe not the sexiest way to do it. But it served my purpose:

    #after_section_1 {
    background-color: #F3F3F3 !important
    }

    div.template-page {
    background-color: #FFF !important;
    }

    .sidebar_left .content {
    border-left: none;
    }

    .sidebar_left .content {
    float: right;
    margin-right: -133px;
    margin-left: -1px;
    padding-left: 50px;
    padding-right: 86px;
    }

    @media only screen and (max-width: 767px) {
    .sidebar_left .content {
    float: right;
    margin-right: -50px;
    margin-left: -1px;
    padding-left: 50px;
    padding-right: 0px !important
    }
    }

    @media only screen and (max-width: 767px) {
    #after_section_1 {
    background-color: #FFF !important;
    }
    }

    http://www.roamingbilling.com/about/

    #362231

    Hi!

    Glad you figured it out and thank you for sharing your solution!

    Regards,
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Colored sidebar’ is closed to new replies.