Hi all,
struggling here, trying to add my own style sheet as an attachment to wallpaper.html, ive seen other references but still my sheet isnt getting attached, ill post my code see if anyone can help me out
structure is
.theme
-Bundles
--.com.apple.springboard
-Private
--Icon Sets
--Sources
--StyleSheets
--configureMe.js
--Wallpaper.js
-UISounds
-Info.plist
-Wallpaper.html
-wild.css
* - = in main folder -- = in subfolders
wild.css
Code:
body { padding:0; background-color: transparent; margin: 0; height: 480px;width: 320px;}
#top { height:178px; width:320px; background-color:#FF0000; color: #FFFFFF; }
#bottom { height:302px; width:320px; background:url(bottom.jpg) no-repeat; }
wallpaper.html
Code:
<?xml version="1.0" encoding="UTF-16"?>
<html>
<head>
<link href="wild.css" rel="stylesheet" type="text/css" />
<base href="Private/"/>
<!--meta name="viewport" c "width=320, minimum-scale=1.0, maximum-scale=1.0"/-->
<meta http-equiv="Content-Type c charset=UTF-8"/>
<script type="text/javascript" src="configureMe.js"></script>
<script type="text/javascript" src="Wallpaper.js"></script>
</head>
<body onLoad="onLoad()">
<div id="top">TEST</div>
<div id="bottom"> </div>
<div id="WeatherContainer">
<div id="TextContainer">
<p id="city">Loading...</p>
<p id="temp">-*î</p>
<p id="desc">-</p>
</div>
<img id="weatherIcon" src=""/>
</div>
</body>
</html>
thanks anyone!