Jump to content

benjaminmorgan

Member
  • Posts

    226
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by benjaminmorgan

  1. On the right sidebar I believe the text "What we got:" should be "What we have:
  2. benjaminmorgan

    New Member

    Welcome to the forum shara!
  3. Okay, if you are looking to learn over the couple of weeks and just code it yourself, I would recommend picking up Notepad++ if you are on Windows (google it). As far as tutorials, Killersites has them, but http://w3schools.com is a good start that is non video. I would start with HTML 4 because it has the fundamentals of what you need to know, and then go onto HTML 5 as most HTML 5 courses only has the new stuff, when you will need to know the old stuff as well, such as heading tags, p tags, span tags, etc. HTML 5 is the latest version. Let me know if you have any questions.
  4. I forgot to change the facebook thing. I merged with a few friends online and started a different company. I hadn't updated the signature because we are moving servers but I guess the users will be able to see it when it comes back online. I have tried business cards, etc. and no one seems to need web design. I live in a town of 3000 people and it is very far away from anyplace so not that many people to reach. I have also tried classifieds before and didn't get me any. The site that was down in the portfolio link was a wordpress site where my browser closed off in mid update and it messed it up. I haven't gotten around to fixing it yet.
  5. I did a quick google search for "java help forum" and here was one of the results. http://www.javaprogrammingforums.com/ Maybe try that out.
  6. Maybe someone will be able to help me out. I haven't been able to get any clients. I have tried passing out business cards, flyers, etc. I have done social media marketing, posted ads, and I still can't seem to find a client. I can't even get proposals. Is there anything I'm doing wrong or should be doing?
  7. Actually, I don't think you absolutely NEED a PHP framework. Some successful sites don't use PHP or Javascript. It would be nice to know Javascript and PHP and then later on maybe move to a PHP framework.
  8. You could do something like this and incorporate JS in PHP to save it as a php variable. Then you will have to learn setting up a database and adding it to it by yourself. Their is some good tutorials on it. <script> <?php $datepicker = this.form.datepicker0.value; ?> </script
  9. If your host uses phpmyadmin, you would change it the same way. For local computer's there isn't much use for one.
  10. I think root is the password on WAMP. On Windows it is blank until you create one. You can change the password by going to localhost/phpmyadmin then click Priveleges on the top navigation. It's pretty easy.
  11. Sometimes I find that a div won't work for me but a <br class="clear"> always does.
  12. Here is a script that should work. I used it on a website once before. This uses a ul instead of form code you could do the same thing with form code though. This is a simple script. You may prefer the link that Ben posted because it saves the option through cookies. HTML <html> <head> <link href="style1.css" id="myCSS"> </head> <body> <ul id="navigation"> <li><a href="#" id="style1">Style 1</a></li> <li><a href="#" id="style2">Style 2</a></li> </ul> </body> </html> JS function style2() { document.getElementById("myCSS").setAttribute("href", "style2.css"); } function style1() { document.getElementById("myCSS").setAttribute("href", "style1.css"); } window.onload = function() { document.getElementById('style2').onclick = style2; document.getElementById('style1').onclick = style1; }
  13. I just know the basics of javascript/jquery.
  14. Most of the time I do just use classes. I will use ID's if it is something I absolutely know is only going to occur once on the page. When I use ID's most is when I use Javascript because I know if it has an ID it must be having something done to it in Javascript.
  15. That is a parenthesis. It's in the bottom code block. It's not done on purpose. The code won't work without that parenthesis.
  16. I think I have misunderstood the question. Try the fancybox that Eddie suggested.
  17. I don't see anything in the javascript console. I fixed the 3 errors you posted. The hit button still shows up.
  18. firefox doesn't seem to work at all. Grr. It seems to work in every other browser! Well not the hiding part but the changing cards and hit buttons. Firefox doesn't add the card either.
×
×
  • Create New...