Jump to content

cmgmyr

Members
  • Posts

    1,278
  • Joined

  • Last visited

    Never

Everything posted by cmgmyr

  1. Check these out: http://www.swmoore.com/paintproof.html (I can't find the full image...I saw it once before and it's awesome.) http://www.deviantart.com/deviation/17908194/ <~~~WOW
  2. I like it too, good job so far
  3. there might be some stuff that gets messed up
  4. That was pretty good! I like the arrangement and his guitar tone. And for the difficulty of that song he only messed up twice haha ...not that I could play any better. If you like music like that then you will like Dream Theater a lot! john petrucci has that same smooth heavy metal tone...it's awesome. Hopefully this kid gets out of his bedroom soon and lets the world know he CAN play guitar...if he does that we could see a lot from him in a few years or less...
  5. I tried Flock once for like 20 min and it crashed on every page I went to...it might be better now though
  6. I get all of my domains through GoDaddy, they seem to be the fastest in getting the domain up and running. I have had only one client with a hosting package through there and I didn't have any problems with it. I would say try it if you want to, and if you don't like it...try something else. I have hosting accounts from 3 different companies just so I could try them out and I have different uses for each one.
  7. Looks like you got your lefts and rights a little messed up... [img]http://www.post-gazette.com/images4/20060521rightlefttest.gif[/img] http://www.post-gazette.com/pg/06141/691956-114.stm http://www.google.com/search?hl=en&q=how+to+tell+left+from+right ..don't worry it's all in good fun :)
  8. You would have to generate a random sting of X amount of chars. then you would have to use the md5.
  9. Check this out...There seems to be a few good ones in there. http://www.google.com/search?hl=en&q=undelete+partition ...just try not to write anything to that drive...
  10. I use Dreamweaver 8...it's great with PHP and CSS (and a lot of others)
  11. The only thing that you can use (easily) is JS: onclick="window.open(this.href,'_blank');return false;"
  12. I've had ads on my syracuse bands website for about 8 months and I made $71+ but it's not really a big market...
  13. Nice pics. Here are a few of mine:  :) http://syracusebands.net/gallery.php?cmg=View_Cat&userid=1&aid=89 http://syracusebands.net/gallery.php?cmg=View_Cat&userid=1&aid=182
  14. very cool, i play too. I have a mapex, tama, and i've been looking at the roland td-12s for a while now...just waiting for the cash... :)
  15. those are pretty funny. ...is that drum equipment in the background??? haha :D
  16. Hey all, I've been working on my www.syracusebands.net site for over a year now and over that time I have made a lot of improvements and have also gotten a lot of the same type of work from it (other membership sites). Initially I had the whole members script in one file which was about 8,000+ lines of code and it was running really slow. It was pretty much one big switch that would point you to differnet functions within the same users page. When I did an upgrade I took all of those functions and made other files and "included" them when you call that function. This cut down the users script to about 475 lines of code so the site is a LOT faster now. I would like to take the next step in programming to make myself and my scripts better. I was thinking about converting it to OOP. What are your thoughts? And is there something else I should look into? Thanks, -Chris
  17. I use Maxthon for my IE7 browsing. I like it a lot, it's the best "browser" that I have found it also has the best ad blocker too. I do have FF and Opera installed but they are mostly for testing. www.maxthon.com if you wanna check it out.
  18. Or is this what you want: html:[code]<input type="submit" name="button" value="Preview"> <input type="submit" name="button" value="Submit">[/code] php:[code]if($_POST['button'] == "Preview"){ //do this }else{ //do this }[/code]
  19. well you don't need a set margin if you can just "center" it by using margin:0px auto; and I'm not really sure why you had the last 2 entries in your css. try not to put too many things in your css file. the whole point of css is to keep the code clean, sometimes the more you add the harder it is to work with...and the more problems you could potentially have... Please let me know if you have any other questions. :)
  20. Your new css: [code]/* Default Style Sheet - Ceps World */ /* Main Tags */ * {   margin: 0;   padding: 0; } body { color: #000000; /* Black */ font-family: Tahoma, Helvetica; font-size: 12px; background-color: #009900; /* Pool table Green */ } img { border-width: 0px; } a:link, a:visited, a:active { color: #FFFFFF; /* White */ text-decoration: none; } h1 {   color: #FFFFFF; /* White */   font-family: Tahoma, Helvetica;   font-size: 16px;   font-weight: bold; } h2 {   color: #000000; /* Black */   font-family: Tahoma, Helvetica;   font-size: 16px;   font-weight: bold; } h3 {   color: #FFFFFF; /* White */   font-family: Tahoma, Helvetica;   font-size: 14px;   font-weight: bold; } h4 {   color: #000000; /* Black */   font-family: Tahoma, Helvetica;   font-size: 14px;   font-weight: bold; } /* Font Classes */ .xlfont { font-size: 16px; } .lfont { font-size: 14px; } .sfont { font-size: 10px; } .xsfont { font-size: 9px; } .str { font-weight: bold; } .ita { font-style: italic; } .textcenter { text-align: center; } .textleft { text-align: left; } .textright { text-align: right; } /* Colour Classes */ .edge { background-color: #FFFFFF; /* White */ } .main { background-color: #F5F5F5; /* Light Grey */ border: thin #000000 solid; padding: 2px; } .section { color: #000000; /* Black */ background-color: #CCFF66; /* Lime Green */ border: thin #000000 solid; padding: 2px; } .heading { color: #FFFFFF; /* White */ background-color: #66CC66; /* Medium Green */ border: thin #000000 solid; padding: 2px; } .tbl {   border-collapse: collapse; } .black {   color: #000000; /* Black */ } .white {   color: #FFFFFF; /* White */ } /* Misc Classes */ .clsCursor {   cursor: pointer; } /* Div sections */ #header {   padding: 8px; } #leftcol {   float: left;   width: 200px;   padding: 10px;   text-align: center; } #lefthead {   float: left;   width: 100px;   padding: 8px;   margin-left: 50px;   text-align: center;   display: inline;   background-color: #CFCFCF; } #leftbox {   float: left;   width: 100px;   padding: 8px;   margin-left: 50px;   text-align: center;   display: inline;   background-color: #E3E3E3; } #rightbox {   float: right;   width: 200px;   padding: 8px; } #centercol {   margin-right: 215px;   margin-left: 215px;   padding: 8px;   background-color: #ffffff;   text-align: center; } #centerhead {   width: 500px;   padding: 8px;   text-align: center;   background-color: #CFCFCF;   margin:0px auto; } #centerbox {   width: 500px;   padding: 8px;   text-align: center;   background-color: #E3E3E3;   margin:0px auto; } #footer {   clear: both;   padding: 8px;   font-weight: bold;   font-size: 9px;   color: #FFFFFF; /* White */   text-align: center; }[/code] I changed the margins in center box and center head, I also got rid of the last 2 groups in the css. works fine in ie 7 now and in FF.
  21. can you post the html code also?
  22. in your css file just add [code]body {background-color:#FFFFFF;}[/code]
  23. very cool, I like it. very clean, i think the client will be happy.
  24. Ok, get rid of that div in your form and change your searchbox div css to this: [code]#toolbar form { float: left; padding: 7px; }[/code]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.