I am trying to position a Facebook like button (which includes a "Send" button) using CSS. Below is the code provided by Facebook along with the div tag classed "like" that I added. Below that is the corresponding CSS. The CSS I am applying does not work; it seems to be overwritten by styling inherent in Facebook's code.
How can I position a Facebook like button using CSS?
Thanks in advance,
John
<div class="like">
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'your app id', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
</div>
The CSS:
.like {
position:absolute;
width:310px;
left:30px;
top:278px;
color: #004993;
font-family:Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
height: 15px;
padding-bottom: 0px;
padding-left: 5px;
padding-top: 2px;
}