• I have a widget without a title, which means it is just displaying the space and background color where the title normally goes. Is there a way to remove the space and border (widgettitle) from a particular widget?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • You should be able to remove the offending item with a little CSS carefully applied. No hacking necessary. Adjust this as required…

    li.widget_offending > h2 {
       display: none;
    }

    or

    li.widget_offending h4.widgettitle {
        display: none;
    }
    Thread Starter dombrorj

    (@dombrorj)

    perfect – thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how do you remove widgettitle?’ is closed to new replies.