Hi, is this possible? I would like to change style of facebook buttons. I cannot do it with css maybe it is possible with javascript. But I do not know, how to edit it because like button is external iframe. Is it somehow possible? thanks Tomas
If the facebook like it button is in another iFrame I imagine this would be impossible. Have you tried a google search? The default style isn't bad anyway it's more recognisable by users as being a facebook like button so they would be more inclined to click on it.
didn't find anything about it yet But you can design your own something like this ,there are many ways
Scratch that. You could somewhat change the color by positioning a div over the button that has its transparency set to about 50%...
CSS #container { position: relative; } #overlay { position: absolute; top: 0px; left: 0px; opacity: .3; background-color: red; width: 450px; height: 80px; filter:alpha(opacity=30); } Code (markup): HTML: <div id="container"> <div id="overlay"></div> <iframe src="http://www.facebook.com/widgets/like.php?href=http://example.com" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe> Test </div> Code (markup): Also facebook allows you to change things like font type and size etc. here: http://developers.facebook.com/docs/reference/plugins/like
thanks for reply yes, I can set style to whole iframe, but I cannot affect its content. I would like to change position of some divs inside iframe. thank for answer Tomas