Reputation: 5763
I've managed to manipulate most of the twitter widget's css but I can't seem to remove the black border around the whole widget and there seems to be a much thicker border on the bottom of the widget which I also want to remove. I'm using Chrome to test this.
Here is the jsfiddle.
Upvotes: 0
Views: 1627
Reputation: 26773
The "border" is actually a background color which is shining through because you have a 1px padding on .twtr-bd
, so the background color of .twtr-bd
is not erasing the black background from the parent element.
Either remove the background color, or remove the padding.
Upvotes: 2
Reputation: 92803
give backgeound-color:white
like this:
#twtr-widget-1 .twtr-new-results, #twtr-widget-1 .twtr-results-inner, #twtr-widget-1 .twtr-timeline {
background:#FFFFFF !important;
}
Upvotes: 1