Hi, masters

I have went through all code here available to get captions working for my flowplayer but still all effects go to vanity. Moreover, I cannot change the size of caption content in style:{}. The logo cannot remove from the player. I use flowplayer-3.1.4.min.js just like many users' doing here.

the code lists here. Please help, than you.

			$f("player", "../flowplayer.commercial-3.1.5.swf",{
				key: '$XXXXXXXXX', 
				logo: { opacity: 0 },

				log: { level: 'debug', filter: 'org.flowplayer.captions.*'},
				clip: {
					url: 'http://flowplayer.org/video/flowplayer.flv',
					// this is the Timed Text file with captions info
					captionUrl: 'timedtext.xml'
				},

				plugins:  {

						captions: {
							url: '../flowplayer.captions-3.1.5-dev.swf',
							// pointer to a content plugin (see below)
							captionTarget: 'content'
						},

							// configure a content plugin to look good for our purpose
							content: {
								url:'../flowplayer.content-3.1.0.swf',
								bottom: 25,
								width: '80%',
								Height: 60,
								backgroundColor: 'transparent',
								backgroundGradient: 'low',
								borderRadius: 4,
								border: 0,

									style: {
			    					'body': {
				  						fontSize: '14',
				  						fontFamily: 'Arial',
				  						textAlign: 'center',
				  						color: '#000000'
			    					}//body
		    					} //style
						} //content
				} //plugin
			});