新的Twitter Widget字体颜色更改

时间:2013-06-18 14:30:11

标签: twitter widget textcolor

设法找到自定义Twitter小部件的方法。现在所有的im都是改变每条推文中文本的整体颜色,而不是因为我改变了这个链接。我已经将主题设置为暗,以便文本很轻,但理想情况下我希望所有文本都是白色而不是淡灰色。无休止地寻找一个解决方案,遗憾的是没有像嵌入twitter墙的原始方式那么容易,但是想到id无论如何都要求。

为你的帮助/时间欢呼。

1 个答案:

答案 0 :(得分:2)

这对我有用。在Chrome,Firefox和IE中测试过。 例如,更改文本颜色。

 $(window).load(function() {
     $(".twitter-timeline").contents().find('head').append( '.p-name { color:#fff !important; } ' );
 }

注意load()和ready()函数之间的区别。

$(window).load // executes when complete page is fully loaded, including all frames, objects and images
$(window).ready // executes when HTML-Document is loaded and DOM is ready