Jump to content

Tadis

Member
  • Posts

    520
  • Joined

  • Last visited

About Tadis

  • Birthday 04/01/2005

Contact Methods

  • AIM
    TheTadis
  • MSN
    ahmedsidat@hotmail.com
  • Website URL
    http://www.tadisweb.com
  • Yahoo
    ahmedsidatai

Tadis's Achievements

0

Reputation

  1. It's been a while Theme: HmmXP Background: Found at Mandolux Icons: Elements (Yz Dock) / Minium (Avedesk shortcuts) Widgets: Avedesk/SysStats (Lucid iTunes widget) Created using Rumshot
  2. would it be possible to have the itemlist.conf file located in: documents and settings%username%... that way different people can have different shorcuts on their dock?
  3. here you go bud, just rename to html New.txt
  4. Try this: <html> <head> <title>A Treasure Trove of Crap</title> <style type="text/css"> a:link { font-family: Verdana; font-size: 10; font-weight: bold; text-decoration: none; color:#FFF04E; } a:visited { font-family: Verdana; font-size: 10; font-weight: bold; text-decoration:none; color:#FFF04E; } a:active { font-family: Verdana; font-size: 10; font-weight: bold; text-decoration: line-through; color:#FFF04E; } a:hover { font-family: Verdana; font-size: 10; font-weight: bold; color: white; text-decoration: none; } body { font-family: Verdana; font-size: 10; background-color: #000; color:black; scrollbar-face-color: #222222; scrollbar-highlight-color: #222222; scrollbar-3dlight-color: #222222; scrollbar-darkshadow-color: #222222; scrollbar-shadow-color: #222222; scrollbar-arrow-color: #FFF04E; scrollbar-track-color: #222222; } #container { position: absolute; left: 50%; margin-left: -515 } .entriesdate { font-family: Verdana, Helvetica, Tahoma; font-size: 12 px; color:#FFFFFF; letter-spacing:0.1em; font-weight:bold; text-align:center; } .entriestitle { font-family: Verdana, Helvetica, Tahoma; font-size: 12 px; color:#000000; letter-spacing:0.1em; font-weight:bold; text-align:center; } .navtitle { font-family: Verdana, Helvetica, Tahoma; font-size: 12 px; color:#FFFFFF; text-decoration:none; letter-spacing:0.3em; font-weight:bold; text-align:center; } .sidebar { font-family: Verdana; font-size: 10 px; color:#000000; } </style> </head> <body> <div id="container"> <img name="index" src="http://www.digikitten.com/playhousev2/files/godpunk/crap.jpg" STYLE="position: absolute; Z-INDEX: 1; LEFT: 0px; TOP: 0px"> <div class="Layer1" style="position:absolute; left:115px; top:141px; width:535px; height:409px; overflow: auto; padding: 5px; z-index:2; filter: chroma(color=#222222);"> <p></p> <Blogger> <BlogItemTitle> <p class="entriestitle"> <u><$BlogItemTitle$></u> </p> </BlogItemTitle> <BlogDateHeader> <p class="entriesdate"><$BlogDateHeaderDate$></p> </BlogDateHeader> <$BlogItemBody$> <div align="right"> <BlogItemCommentsEnabled> <a href="<$BlogItemCommentCreate$>" <$BlogItemCommentFormOnClick$>> <$BlogItemCommentCount$> comments</a> </BlogItemCommentsEnabled> </div> <div align="center">__________________________________________________ ________________</div> </Blogger> </div> <div class="Layer1" style="position:absolute; left:769px; top:141px; width:195px; height:419px; overflow:auto; z-index:2; filter: chroma(color=#222222)"> <p class="navtitle">About Adam</p> <div align="center"> <p class="sidebar"> I'm 22 and in my senior year at Carroll College in Helena, Montana. After I graduate, I hope to spend my career getting Democrats elected. </p> </div> <p class="navtitle">Today I Feel...</p> <div align="center"> <a href="http://www.unkymoods.com" target="_top"> <img src="http://www.unkymoods.com/moodimgsrv.php?mID=44758" border=0> </a> </div> <p class="navtitle">Instant Messenger</p> <div align="center"> <p class="sidebar">click to add me</p> </div> <div align="center"> <!-- Begin Online Status Indicator code --> <!-- http://www.onlinestatus.org/ --> <a href="http://snind.gotdns.com:8080/message/msn/rhythm_rock_shocker@hotmail.com"> <img src="http://snind.gotdns.com:8080/msn/rhythm_rock_shocker@hotmail.com" align="absmiddle" border="0" ALT="MSN Online Status Indicator" onerror="this.onerror=null;this.src='http://snind.gotdns.com:8080/image/msnunknown.gif';"> </a> <!-- End Online Status Indicator code --> <!-- Begin Online Status Indicator code --> <!-- http://www.onlinestatus.org/ --> <a href="aim:goim?screenname=iliveforweez"> <img src="http://snind.gotdns.com:8080/aim/iliveforweez" align="absmiddle" border="0" ALT="AIM Online Status Indicator" onerror="this.onerror=null;this.src='http://snind.gotdns.com:8080/image/aimunknown.gif';"> </a> <!-- End Online Status Indicator code --> <!-- Begin Online Status Indicator code --> <!-- http://www.onlinestatus.org/ --> <a href="ymsgr:sendIM?godpunk935"> <img src="http://snind.gotdns.com:8080/yahoo/godpunk935" align="absmiddle" border="0" ALT="Yahoo Online Status Indicator" onerror="this.onerror=null;this.src='http://snind.gotdns.com:8080/image/yahoounknown.gif';"> </a> <!-- End Online Status Indicator code --> </div> <p> </p> <p> </p> </div> </div> </body> </html>
  5. Looks good - although CPU usage skyrockets when the thumbnails are being generated - thought of using gd to create the thumbnails?
  6. Not sure if this is something you'd consider but have you thought of including a script for internet explorer users (I swear I'm not a user by choice and am forced to use at work ) that fixes the png alpha channel issue - its annoying in sigs and such, I'll do half the work for you - heres the script to link to in your html head: // Correctly handle PNG transparency in Win IE 5.5 or higher. // [url="http://homepage.ntlworld.com/bobosola"]http://homepage.ntlworld.com/bobosola[/url]. Updated 02-March-2004 function correctPNG() { for(var i=0; i<document.images.length; i++) { var img = document.images[i] var imgName = img.src.toUpperCase() if (imgName.substring(imgName.length-3, imgName.length) == "PNG") { var imgID = (img.id) ? "id='" + img.id + "' " : "" var imgClass = (img.className) ? "class='" + img.className + "' " : "" var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' " var imgStyle = "display:inline-block;" + img.style.cssText if (img.align == "left") imgStyle = "float:left;" + imgStyle if (img.align == "right") imgStyle = "float:right;" + imgStyle if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle var strNewHTML = "<span " + imgID + imgClass + imgTitle + " style="" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";" + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader" + "(src='" + img.src + "', sizingMethod='scale');"></span>" img.outerHTML = strNewHTML i = i-1 } } } window.attachEvent("onload", correctPNG);
  7. It is the pinstripe theme, but, with a bit of modding: I've added a shadow effect on the urlbar (so that it's more in keeping with the search bar), also modded the toolbar/statusbar/findbar so that its more in keeping with playboy's excellent mod of stefanka's royale theme.
  8. You need to modify your userchrome.css (visit Hicks design for further instructions and more firefox goodies) Seph check your mail
  9. sketching, you've included the VolUp.vbs and VolDown.vbs files that I created for crni's volume knob config a while back, problem is they don't work as such to control the volume - rather they changed the images to simulate a volume knob being turned up/down. what you need to do is link the relevant meter to setvol.exe (which is likely have been copied over by either one of myown or crni's configs). usage of setvol.exe is 'setvol.exe +10' or 'setvol.exe -10' where 10 is a percentage change. hope this helps
  10. My wife and I met at law school many moons ago. She did all my homework and took notes for me in early-morning lectures whilst I was still in bed, she even did my laundry and ... hang on... I was f#@*ing duped! hehe No seriously, judging by your choice to open this thread, you're pretty young, my advice would be to get over it, there's plenty of fish in the sea - concentrate on your fishing technique, one day, like me, you'll be master in the art of catching shoals of fish in one sitting.
  11. I've been trying to mod Aronnax' graphite theme for Firefox 1.0 PR to look similar to a pinstripe theme I was using before. This mainly involved modding the toolbar buttons, urlbar, searchbar, compact menu & overall sizing/spacings. So far I've achieved the look that I more or less wanted, but for some reason the fav-icon in the urlbar is stretched vertically: Also, you'll notice that the tabs aren't displaying correctly Does anyone know what I'm doing wrong here? This is on winXP with FF 1.0 PR. Any help would be greatly appreciated.
×
×
  • Create New...