Widgets

  • John McCubbin

    #3559

    is there a way to put a widget in the side panel without the widget box being there (I only want this for one widget in the sidebar though)

    Anonymous

    #24902

    Yes, you will need mozilla firebug to see which ID is being assigned to the particular widget box you are going to want to remove.

    Then, you can isolate the css styles which get assigned to that particular widget and manipulate them accordingly.

    Mod

    Kenneth John Odle

    #24903

    Yes.

    In the css for that widget, you’ll need to set the background to the same background of your #content element, and set the h3 element to display:none

    E.g.,

    #text-11 .sidebar div.sidebar-wrap {
    background: [same as #content];
    }
    #text-11 h3 {display:none;}

    Not tested, but should work.

Viewing 3 posts - 1 through 3 (of 3 total)

  • You must be logged in to reply to this topic.