How to remove border from FriendFeed widget?

94 Views Asked by At

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.

1

There are 1 best solutions below

7
smang On BEST ANSWER

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; }