Jump to content

benjaminmorgan

Member
  • Posts

    226
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by benjaminmorgan

  1. 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.

  2. 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.

  3. 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?

  4. Try this for the float problem, right above your footer in your html put:

     

    <div class="clear"></div>

     

    and I know I do not have to tell you but for those who may not know the css:

     

    .clear {
    clear:both;
    }

     

    For the img problem wrap each of your imgs in a separate div and position the div.

     

    Hope this works it has for me in the past with about the same problem.

     

    Sometimes I find that a div won't work for me but a <br class="clear"> always does.

  5. 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;
    }
    

  6. 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.

×
×
  • Create New...