Front Page Widget Background Has Changed

  • Unknown's avatar

    I am using the Bouquet theme with CSS. Out of the blue (seemingly) the widget background color of only the Front page became transparent. The widget background color on all other pages is fine. I am perplexed and would appreciate anyone’s assistance.

    The site I’m working on is bellasottawa.wordpress.com.

    Thanks very much.

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

  • Unknown's avatar

    It seems like the the declarations to style the sidebar assume it is within a section with the ID “main”, which is true for normal pages but not the home page (this is part of the underlying theme that you are using). If you reuse the same CSS without the #main selector it should work:

    .widget-area {
        background: none repeat scroll 0% 0% #FFD8E8;
    }
    
    #content, .widget-area {
        border: 5px solid #FFF;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        padding: 1em;
    }
  • Unknown's avatar

    Pure magic, Hallluke. Thank you very much.

  • The topic ‘Front Page Widget Background Has Changed’ is closed to new replies.