Search code examples
csswidgetborderfeedfriendfeed

How to remove border from FriendFeed widget?


FriendFeed offers a widget with some CSS customization possible. But it seems you can't remove the border (the blue big one around all cotent)? The widget has a URL like

http://friendfeed.com/embed/widget/FOOBAR?v=2&num=30&hide_logo=1&hide_comments_likes=0&hide_subscribe=1

where FOOBAR is a user name.


Solution

  • In the CSS try for v3:

    #friendfeed.widget { border: 0 !important;}​
    

    or this for v2:

    .friendfeed.widget { border: 0 !important;}​
    

    If you also want to remove the logo at the top, add:

    #friendfeed .logo img { display: none; }