How to create a Twitter widget using my own CSS

I have my own design for my Twitter feed and I want to create a default feed using my own design. Is there any way to do this?

The problem is that you cannot use the CSS selector because it only appears after the page loads.

Please check this figure to give you more information on what I need.

https://dl.dropboxusercontent.com/u/35853519/twitter-widget.jpg

Thank,

+4
source share
3 answers

Well, you can customize your Twitter widget by doing something like this:

Default code

<a class="twitter-timeline" href="Pagelink" data-widget-id="Page ID">Tweets by @Test</a>

, data-chrome = "nofooter transparent noheader transparent", :

<a class="twitter-timeline" href="Pagelink" data-widget-id="Page ID" data-chrome="nofooter transparent noheader transparent">Tweets by @Test</a>

, , .., . https://dev.twitter.com/docs/embedded-timelines#customization

, :)

+2

twitter , . " " https://dev.twitter.com/docs/embedded-timelines , .

CSS, API, , .

0

Source: https://habr.com/ru/post/1547833/


All Articles