Adding a custom css file to the Activity Feed on Facebook

I would like to know if there is a way to add a custom css file to the activity feed (http://developers.facebook.com/docs/reference/plugins/activity).

Ive tried to add the css = "url.to.css" property, but it did not work. Thanks

+3
source share
2 answers

Use this method:

<fb:tag name='link'>
<fb:tag-attribute name='rel'>stylesheet</fb:tag-attribute>
<fb:tag-attribute name='href'>YOUR_FACEBOOK_CANVAS_PAGE/style.css</fb:tag-attribute>
<fb:tag-attribute name='type'>text/css</fb:tag-attribute>
<fb:tag-attribute name='media'>all</fb:tag-attribute>
</fb:tag>

It will be added to your page. Remember to change the URL.

+4
source

I managed to configure the Activity plugin after a lot of effort.

The result can be seen here:

http://www.quniverse.co.uk/shopdata/about_us.php

, , , , , . , , . , , .

, :

http://facebookanswers.co.uk/?p=302

:

  • CSS .
  • , .
  • .
  • , .

, .

-1

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


All Articles