Lexs is on fire !!!
---------------------
Ha Ha first time in ages have had some spare time
![]()
Lexs is on fire !!!
---------------------
Ha Ha first time in ages have had some spare time
![]()
Thank you Guys/Girls
Widget name not sure I think it was posted here as a LT and I have just
rearranged it and changed it a little.
Quab icons some are have just mixed and Match icons I like I must
have got them from Macthemes
Here is the Theme
Wallpaper
Dock
Icons
Widget
Image
Download http://www.box.net/shared/ie6nql6z5rpj3sklqg2z
Enjoy![]()
Image
Thank you SOOO much. I really appreciate it. These icons are awesome.
surlygrl You are Welcome
JrNationFan88 Would you mind sharing Photo icon or tell me which theme
it came from.
Image
surlygrl You are Welcome
JrNationFan88 Would you mind sharing Photo icon or tell me which theme
it came from.
Not JrNationFan88 but here you go, Lexs:
It looks good, the only thing I don't like is the font and size of the time and pm compared to the rest. But would love to have the date and weather widget.
IrishVixen said:It looks good, the only thing I don't like is the font and size of the time and pm compared to the rest. But would love to have the date and weather widget.
While the font's not my favorite, I bet it appeals to the guys. And I like the size difference as it emphasizes the time--for me, that's the critical element in a widget, the one piece I want to know at a quick glance.
But that's just me.![]()
Image
surlygrl You are Welcome
JrNationFan88 Would you mind sharing Photo icon or tell me which theme
it came from.
Thanks for your sweet work and by the way icon style Psd is from Dayra i think![]()
All this font talk reminds me that I need to check and see if there are any new fonts for BytaFont that I've missed recently. (Oh, and put me down as a guy not loving the font either, but please don't take that the wrong way LEXS!) I love the widget and layout, though!![]()
Since discovering we could add fonts directly to widgets only, I actually deleted most of the fonts I had in BytaFont. I just get sick of my mail font, etc. changing. I picked one font I actually like (Architects' Daughter) for my system--and then never use "Helvetica" in the widgets anymore. Deleted about thirty that I never did use. LOL
But yes, they seem to release somewhere between 5-10 fonts a week for BytaFont, so you may have missed a few.
Like Lexs, I've had a tiny bit of down time, so I've gone back to tweaking the Crisscross/Transcene widget I was working on a while back. Shortened the day of the week to three letters and moved the whole thing to the right a bit more; I think I like this version better. Maybe. (Both wallpapers from here: http://tseventy.com/)
Still not quite back on track time-wise, but hopefully I'll be around more again in the coming weeks.![]()
Image
I use the cal/day/date as a seperate widget so I can add it if required to any other widget or Theme
Just make sure it is above your Theme in winter board
To move it up or Down Edit the following
.CalendarWidget
{
text-align: center; margin-left:0px; margin-top: 0px; width: 320px; height: 480px;
position: absolute; align: center; top: 355px; right: 0px; down: 0px; left: 0px;
/* background: url(../Backgrounds/DefaultSB.png) no-repeat;*/
355px being near the bottom above the Dock icons
Download http://www.box.net/shared/xxlj5o7meo4syll9fagp
function updateClock ( )
{
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
var currentSeconds = currentTime.getSeconds ( );
// Pad the minutes and seconds with leading zeros, if required
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
// Pad the minutes and seconds with leading zeros, if required
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
// Pad the minutes and seconds with leading zeros, if required
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
BTW, you MUST post a download link for the updated widget! That's fantastic!
![]()
I'd planned to when I have more than 5 minutes available at a time, now that the arrangement looks better; just have to check on a couple of things and fix the fact that it's currently set up to use Wallpaper JPEGifier--I know that's not an issue for you, but others are still using the old method of Wallpaper.png, etc, I'm assuming?
I have another HTML question. I am trying to add the "0" to my clocks hours, I want 08:00pm instead of 8:00pm. I found this in another html:
Code:function updateClock ( ) { var currentTime = new Date ( ); var currentHours = currentTime.getHours ( ); var currentMinutes = currentTime.getMinutes ( ); var currentSeconds = currentTime.getSeconds ( ); // Pad the minutes and seconds with leading zeros, if required currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours; currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes; currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
I took this part:
Code:// Pad the minutes and seconds with leading zeros, if required currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
and added it to my HTML where it says to pad the minutes and seconds, but its not working:
Code:// Pad the minutes and seconds with leading zeros, if required currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes; currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds; currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
Image
<!-- Convert the hours component to 12-hour format if needed -->
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
<!-- Pad the minutes and seconds with leading zeros, if required
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
to make it work add "Pad the minutes and seconds with leading zeros, if required" script AFTER the "Convert 24hr to 12hr "(or something along those lines) to look EXACTLY like this:
Code:<!-- Convert the hours component to 12-hour format if needed --> currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours; <!-- Pad the minutes and seconds with leading zeros, if required currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours; currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes; currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
SAVE AND RESPRING
/*---------------------------------------------------------------------------------------------------------------------------------AM PM Edit------*/
/* Remove the /* from under this line to display am or pm after the 12 hours clock */ /* NEW!! */
// Choose either "AM" or "PM" as appropriate
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
// Convert the hours component to 12-hour format if needed
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
// Convert an hours component of "0" to "12"
currentHours = ( currentHours == 0 ) ? 12 : currentHours;
// Compose the string for display
var currentTimeString = timeOfDay;
// Update the time display
document.getElementById("ampm").firstChild.nodeValue = currentTimeString;
}
does anyone have or can convert Mela HD for 4.3.3
heres the link to the download: http://jacksond.com/
basically can someone crop out the WellLock@2x ? I dunno how to do that in photoshop
thanks
Image
I have had enough playing with this If any of you guys want the widget I will poster later