diff --git a/Update.bat b/Update.bat
index 0b2bd7f..1a213b9 100644
--- a/Update.bat
+++ b/Update.bat
@@ -334,6 +334,25 @@ findstr "mediastatscolour" config.php >nul 2>&1
 	 goto END
    :END
    
+      rem mediastatstextcolour episodes
+findstr "mediastatstextcolour" config.php >nul 2>&1
+   if errorlevel 1 goto ONE
+   if errorlevel 0 goto ZERO
+   goto END
+   :ZERO
+     echo mediastatstextcolour Already Updated
+	 goto END
+   :ONE
+     echo ^<?php >>config.php
+	 echo //// mediastatstextcolour >> config.php
+	 echo $mediastatstextcolour = "#FFFFFF" >> config.php
+	 echo //// >> config.php
+	 echo ^?^> >> config.php
+	 echo mediastatstextcolour Updated
+	 goto END
+   :END
+   
+   
    
    rem Update Version
 findstr "localversion" config.php >nul 2>&1
diff --git a/config/set1.php b/config/set1.php
index b82a5b8..219fce7 100644
--- a/config/set1.php
+++ b/config/set1.php
@@ -41,6 +41,8 @@
 	<br />
 	Kodi Libary Background Colour: <input class="color" name="mediastatscolour" value="<?php echo $mediastatscolour ?>"</td>
 	<br />
+	Kodi Libary Text Colour: <input class="color" name="mediastatstextcolour" value="<?php echo $mediastatstextcolour ?>"</td>
+	<br />
 	<br />
 	Show Version	:  <input name="showversion" id="id" type="checkbox" <?php if($showversion > "0")  echo "checked=checked; "; ?> /> (<?php echo $localversion ?>)<br />
 	<br />
diff --git a/config/write1.php b/config/write1.php
index a9cfd1d..b9ea20c 100644
--- a/config/write1.php
+++ b/config/write1.php
@@ -20,6 +20,7 @@ $widgetcolor1 = $_POST['widgetcolor'];
 $MStatusEnabled1 = $_POST['MStatusEnabled'];
 $mediawidget1 = $_POST['mediawidget'];
 $mediastatscolour1 = $_POST['mediastatscolour'];
+$mediastatstextcolour1 = $_POST['mediastatstextcolour'];
 
 //
 $fl='../config.php'; 
@@ -34,6 +35,7 @@ $content =   preg_replace( '/\$user = \"(.*?)\";/', '$user = "'.$user1.'";', $co
 $content =   preg_replace( '/\$pass = \"(.*?)\";/', '$pass = "'.$pass1.'";', $content);
 $content =   preg_replace( '/\$custombackground = \"(.*?)\";/', '$custombackground = "#'.$backgroundcolor1.'";', $content);
 $content =   preg_replace( '/\$mediastatscolour = \"(.*?)\";/', '$mediastatscolour = "#'.$mediastatscolour1.'";', $content);
+$content =   preg_replace( '/\$mediastatstextcolour = \"(.*?)\";/', '$mediastatstextcolour = "#'.$mediastatstextcolour1.'";', $content);
 $content =   preg_replace( '/\$widgetcolour = \"(.*?)\";/', '$widgetcolour = "#'.$widgetcolor1.'";', $content);
  // version Settings
  if (empty($showversion1)) {
diff --git a/css/black.css b/css/black.css
index 60fa878..931d8c2 100644
--- a/css/black.css
+++ b/css/black.css
@@ -4,6 +4,11 @@
  color: white;
 }
 
+iframe {
+    background: black; /* this is just to make the frames easier to see */
+}
+	  
+
 #style{
 position: absolute; 
 top: 0; 
diff --git a/css/blue.css b/css/blue.css
index 762fa97..6e83508 100644
--- a/css/blue.css
+++ b/css/blue.css
@@ -5,6 +5,10 @@
 
 }
 
+iframe {
+    background: #021AB0; /* this is just to make the frames easier to see */
+}
+
 #style{
 position: absolute; 
 top: 0; 
diff --git a/css/custom.php b/css/custom.php
index aae8626..4532d18 100644
--- a/css/custom.php
+++ b/css/custom.php
@@ -13,6 +13,11 @@ background-color: <?php echo $custombackground; ?>;
 color: white; #000000;
 }
 
+#statswidget{
+background-color: <?php echo $custombackground; ?>;
+color: white; #000000;
+}
+
 #maincontent{
 position: fixed; 
 top: 40px; /*Set top value to HeightOfTopFrameDiv*/
@@ -126,5 +131,9 @@ div.head {
 font-size: 16pt;
     color: white;
 }
+
+iframe {
+    background: <?php echo $custombackground; ?>; /* this is just to make the frames easier to see */
+}
 	  
 </style>
\ No newline at end of file
diff --git a/css/red.css b/css/red.css
index a3c6284..726dffd 100644
--- a/css/red.css
+++ b/css/red.css
@@ -4,6 +4,10 @@
  color: white;
 }
 
+iframe {
+    background: red; /* this is just to make the frames easier to see */
+}
+
 #style{
 position: absolute; 
 top: 0; 
diff --git a/css/static.php b/css/static.php
index 6986c80..3c41819 100644
--- a/css/static.php
+++ b/css/static.php
@@ -15,8 +15,32 @@ tr { background-color:<?php echo $widgetcolour; ?>;
 	font-size: 14pt;
     width: 100%;
 	 text-align: center;
-	 color: black;
+	 color: <?php echo $mediastatstextcolour; ?>;
 	 background-color: <?php echo $mediastatscolour; ?>;
 	}
+	
+
+li{
+  list-style:none;
+  color: white	;
+  padding-left: 0pt;
+  margin-top:0px;
+-webkit-background-size: cover;
+-moz-background-size: cover;
+-o-background-size: cover;
+background-size: 80px 60px;
+height: 60px;
+  }	
+
+ul {
+  padding-left: 0px;
+  padding-top: 0px;
+}
+
+iframe {
+    margin: none;
+    padding: none;
+    border: none;
+}
 </style>
 
diff --git a/css/white.css b/css/white.css
index e1c430d..ea82a97 100644
--- a/css/white.css
+++ b/css/white.css
@@ -4,6 +4,11 @@
  color: white;
 }
 
+iframe {
+    background: white; /* this is just to make the frames easier to see */
+}
+	  
+
 #style{
 position: absolute; 
 top: 0; 
diff --git a/feeds/SickBeard.php b/feeds/SickBeard.php
index 0bcf0a5..7ebb04a 100644
--- a/feeds/SickBeard.php
+++ b/feeds/SickBeard.php
@@ -1,5 +1,6 @@
 <html> 
 <head> 
+<link rel="stylesheet" type="text/css" media="screen" href="../css/static.php" />
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
   <style>
         .hiddenRow { display: none; }
@@ -17,18 +18,8 @@
   </tr>
   <tr class="hiddenRow">
             <td bgcolor='#FFFFFF'>
-<?php
-include '../config.php';
-$Sick = json_decode(file_get_contents("http://$base:$sickport/api/$SICKAPI/?cmd=future&sort=date&type=today"), TRUE); ?>
-    <ul>
-<?php foreach($Sick['data'] as $day) : ?>
-    <?php foreach($day as $item) : ?>
-	        <li><?php echo $item['show_name'] ?> </br> <?php echo $item['ep_name'] ?></li>
-    <?php endforeach ?>
-<?php endforeach ?>
-<li>
-<?php echo "<a href=\"http://$base:$sickport/api/$SICKAPI/?cmd=sb.forcesearch\"target=\"_blank\">Click here To Force Search</a>"; ?> </li>
-</ul>
+<iframe src="feeds/SickBeard_2.php" width="271" height="200" scrolling="yes">
+</iframe>
 			            </td>
         </tr>
 </form>
diff --git a/feeds/SickBeard_2.php b/feeds/SickBeard_2.php
new file mode 100644
index 0000000..02ccf04
--- /dev/null
+++ b/feeds/SickBeard_2.php
@@ -0,0 +1,53 @@
+<!--Force IE6 into quirks mode with this comment tag-->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
+<head>
+<link rel="stylesheet" type="text/css" href="../css/white.css" />
+<link rel="stylesheet" type="text/css" href="../css/static.php" />
+<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="../css/black.css" />
+<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="../css/white.css" />
+<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="../css/blue.css" />
+<link rel="alternate stylesheet" type="text/css" media="screen" title="red" href="../css/red.css" />
+<link rel="alternate stylesheet" type="text/css" media="screen" title="custom" href="../css/custom.php" />
+<script src="../styleswitch.js" type="text/javascript">
+
+
+/***********************************************
+* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
+* This notice MUST stay intact for legal use
+* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
+***********************************************/
+
+</script>
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
+    <style>
+        .hiddenRow { display: none; }
+    </style>
+    <script>
+        function toggleNextRow(row) {
+            var nextRow = $(row).next();
+            nextRow.toggle();
+        }
+	function togglebodytheme() {
+            $('#themetable tbody').toggle();
+        }
+
+    </script>
+</head>
+<body>
+<?php
+include '../config.php';
+$Sick = json_decode(file_get_contents("http://$base:$sickport/api/$SICKAPI/?cmd=future&sort=date&type=today"), TRUE); ?>
+    <ul>
+<?php foreach($Sick['data'] as $day) : ?>
+    <?php foreach($day as $item) : ?>
+	<?php $url = "http://$base:$sickport/api/$SICKAPI/?cmd=show.getbanner&tvdbid=".$item['tvdbid']; ?>
+	       <li style='border: 1px solid black; background: url(<?php echo $url; ?>)  no-repeat center center;'>
+<span style="background-color: #000000"> <?php echo $item['show_name'] ?> - S<?php echo $item['season'] ?>E<?php echo $item['episode'] ?> </br> <?php echo $item['ep_name'] ?></li></span>
+    <?php endforeach ?>
+<?php endforeach ?>
+<?php echo "<a href=\"http://$base:$sickport/api/$SICKAPI/?cmd=sb.forcesearch\"target=\"_blank\">Click here To Force Search</a>"; ?> 
+</ul>
+</body> 
+</html>