Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS facebook likebox Css edit Re: facebook likebox Css edit

#54273
Moofin
Participant

Do you have firebug in firefox? If you do, inspect the element to find out the different class names of the like button. Then when you have the class name you want to style go to your css stylesheet and do as you would normally but at the end of your styles make sure to add an !important. For example:

.connect_widget_like_button { border:1px solid #000000!important; }

!important ignores any other styles set to that element and uses the one you’ve set.
Hope that helps :)