diff --git a/webroot/css/weatherscan.css b/webroot/css/weatherscan.css index f758f14..43116d6 100644 --- a/webroot/css/weatherscan.css +++ b/webroot/css/weatherscan.css @@ -6355,8 +6355,8 @@ label{ #logo-area { position: absolute; - width: 31.528%; - height: 9.398%; + width: 452px; + height: 95px; left: 0; top: 83.4% } @@ -6364,9 +6364,9 @@ label{ #logo-area img { display: block; position: absolute; - width: 65%; - top: 19%; - right: 5% + width: 100%; + top: 0%; + right: 0% } #arrow-img { diff --git a/webroot/images/midco_logo_shadow.png b/webroot/images/midco_logo_shadow.png index a3df9e1..bfee6c3 100644 Binary files a/webroot/images/midco_logo_shadow.png and b/webroot/images/midco_logo_shadow.png differ diff --git a/webroot/index.html b/webroot/index.html index edc2904..e1386ac 100644 --- a/webroot/index.html +++ b/webroot/index.html @@ -2084,7 +2084,7 @@
-
+
diff --git a/webroot/js/config.js b/webroot/js/config.js index 316d47c..6eeab7f 100644 --- a/webroot/js/config.js +++ b/webroot/js/config.js @@ -5,11 +5,11 @@ var map_key = ''; //Apperance settings. Fields left blank will use defaults. Will only refresh upon reload. var apperanceSettings = { - iconSet:"2007", //2007 or 2010 + iconSet:"2010", //2007 or 2010 serialNumber:"",// Ex. "TWCS02983932" headinID:"", // Ex. "0298393223" affilateName:"Midco",// Ex. "Comcast" - logoURL:"", //image size must be... + logoURL:"", //image size must be 879*184px or similar aspect ratio. corebackgroud:"buildings", //forest, mountain, city, buildings, neighborhood, southwest, ocean. Default is buildings. backgroudType:"",//Set to backgroudURL:"",//If background type set to "custom" will use this url. URL can be a website or local file path. diff --git a/webroot/js/newweathermanager.js b/webroot/js/newweathermanager.js index 25b0cd1..a7e87de 100644 --- a/webroot/js/newweathermanager.js +++ b/webroot/js/newweathermanager.js @@ -48,6 +48,9 @@ function applyApperanceSettings() { } else { $('.city-info-slide').css({'background': `transparent url(/images/newbg/core_${apperanceSettings.corebackgroud}_bg.png) no-repeat`, 'background-position': '69% 41.5%', 'background-size': '120.3% 150.9%'}) } + if (apperanceSettings.logoURL) { + $('#logo-area img').attr("src",apperanceSettings.logoURL) + } }