Search results

  1. N

    Redid my Portfolio Site Design...

    Not yet. Generally I create a wireframe design of HTML, and then splice individual graphics from the PSD and add them to the code.
  2. N

    Redid my Portfolio Site Design...

    Yes it will be.
  3. N

    Redid my Portfolio Site Design...

    I currently have a pretty simple, kind of corporate looking website advertising my services which can be seen here: www.wellerwebdesign.com I wanted to change the focus of the site towards myself as a designer instead of the 'corporate' feel that it kind of has now. As well as making it more...
  4. N

    Need Help: Changing Value of Text Input

    Hello! I am wondering if anyone here could help me with a problem I have run into. Background information: I am making a website that sells custom cabinets. On the purchase page, users can enter their custom dimensions in ~66 text inputs. When they hit a button to 'update cost' the price...
  5. N

    What's wrong with this form?

    I am having issues with this form: <form method="post" action="generalcontact.php"> <input type="text" name="name" value="Name" onblur="if(this.value == '') { this.style.color='#000'; this.value='Name'}" onfocus="if (this.value == 'Name') {this.style.color='#000'; this.value=''}"><br>...
  6. N

    Web Design Website

    So, I have started to create a website for myself in order to help advertise my services. This is what I have come up with for the main page, design wise. Please let me know what you think, also sorry if your screen is under 1000px I haven't created the styles for smaller windows yet...
  7. N

    Mobile Friendly Website ?!

    You can use different CSS stylesheets depending on the device width, using the following... <link type="text/css" rel="stylesheet" media="screen and (min-device-width: 1px) and (max-device-width: 500px)" href="mobile.css"> So if the page is being displayed on a device, with a browser width...
  8. N

    It's a Start...

    Thanks for the feedback, still deciding which navigation to keep, looks weird without the side bar but weird without the top nav. Maybe I can find something else that would be suitable for the side. It's a static html/css page, no real CMS behind it. Although I have it hooked up to CushyCMS, so...
  9. N

    It's a Start...

    I just started a basic web design job for a local bike enthusiast group, this is just what I came up with today. They wanted a simple website that is easy to use and navigate. Just looking for some feedback on what to add/remove. Right now it is hosted on my dads website...
  10. N

    Does It Really Matter?

    Just a thought, does it really matter if I source images such as <img src="http://www.domain.com/image-folder/image.jpg"> as opposed to <img src="image-folder/image.jpg"> ? I usually just use "folder/image" but now that I am using CushyCMS to allow my clients to add content, it...
  11. N

    Portfolio Review

    As stated already, you need a call to action on the main page. I opened your link and sat there staring at a blank screen waiting for it to load for twenty seconds, when it was already done. Heck, have the thing scroll out after the page loads, it is an unnecessary step for your viewers to take...
  12. N

    Web Designers: School or Self Taught?

    I'm still in high school, so am so far self-taught. Whether I go to school for web design depends on how much I learn in the next couple years, and what the web standards are at the time.
  13. N

    Am I Doing This Right? (HTML/CSS)

    My web design skills are still in their infancy, so my sites are pretty basic looking. However, I am just wondering if I am doing things the right way: I am making static HTML and CSS pages. I create the HTML and CSS pages separately, and connect the stylesheet to the html page in the...
  14. N

    Pretty Basic Site, Need Opinions

    I recently created this pretty basic site for a company selling children CDs. It consists of 12 pages, and has an online shopping cart (fatfreecart) incorporated for 12 items. It is almost entirely static HTML/CSS except for the contact form, which uses a bit of PHP. The url is...
  15. N

    Got Ripped Off

    (Sorry if this is the wrong section) So I recently did a web design job for someone through kijiji. I quoted it at about $200 and they agreed ($20 per page). I did 99.99% of the website and kept them updated through out the design process, and they returned all my emails enthusiastically with...
  16. N

    Need help

    I actually JUST had this problem, and had a ton of issues because most carts require you to build around them. If your just using static HTML/CSS pages, you can use FatFreeCart. I don't know the URL, but it should come up if you google it. It gives you a code snippit which you put in your...
Top