When setting the border color on a FB Like Box, it is only applied to three of the four sides (screenshot).

The information is being passed in the iFrame URL, so this may be a FB limitation.

Comments

bryancasler’s picture

In the interim I was able to work around the limitation with some CSS


.facebook
{
	border: 0;
	border-top: 1px solid #aaaaaa;
	z-index: 10;
	overflow: hidden;
	position: relative;
}

.facebook iframe
{
	overflow: hidden;
	position: relative;
	top: -1px;
}
Ghelici’s picture

Coulld you please specify where the above code is entered?

bryancasler’s picture

It's CSS, enter it in any of your theme's CSS files.

ferdi’s picture

Status: Active » Closed (works as designed)

Facebook is doing all the rendering. Nothing we can do in the module.
thanks!