Thread Starter
J_Ray
(@j_ray)
I almost forgot — I am also trying to put a border around the whole thing. Is there a solution for that as well? Thank you so much!
Try adding the following to the style sheet on the settings page for the plugin:
#facebook_status_box {
height: 200px;
border: 1px solid #FF0000;
}
#facebook_status_box #facebook_canvas {
height: 200px;
}
Change the height and border to one that will suit you.
Thread Starter
J_Ray
(@j_ray)
Oh, so close! Only problem is the outer border isn’t quite long enough. You can see what’s happening at rippletestsite dot com.
BTW, thank you for the amazingly prompt response!
Try decreasing the height of “#facebook_status_box #facebook_canvas” until it fits inside the border. Or increasing the height “#facebook_status_box” until the border fits around the canvas.
Thread Starter
J_Ray
(@j_ray)
OK, just one (or maybe two) more things and then I will try to leave you alone–aside from reviewing the widget & leaving a tip 🙂
Is it possible to make the corners of the border rounded so they come closer to matching the un-editable Twitter widget on my page?
And then the last question: Is it possible to change the text from “Facebook Feed” to something else? I saw where it’s possible to eliminate it altogether but I didn’t see this question posed elsewhere (unless I missed something).
To make the corners rounded add the following to the bottom of the style sheet on the settings page for the plugin:
#facebook_status_box
{
border-radius: 5px;
}
To change the text, you would have to modify the PHP.
- Open ‘/wp-content/plugins/jsl3-facebook-wall-feed/php/class-uki-facebook-wall-feed.php’
- Line 277 is the following:
__( 'Facebook Status', JSL3_FWF_TEXT_DOMAIN ) . '</h2>' .
- Change “Facebook Status” to whatever you want.
- Save the file.
Thread Starter
J_Ray
(@j_ray)
Thank you so much for all of your help. Unfortunately it looks like I’m going to be forced to find a new widget because Chrome is now marking my page as a potential carrier of malware when I have this widget enabled. I hope it is just me and not everyone who’s using this widget who is being affected by this! Thanks again.