Search results

  1. sheanhoxie

    IE7 Float Bug

    Did you ever find a fix to this? Looks ok to me now within Firefox and IE7
  2. sheanhoxie

    Suggestions on Purchasing Shopping Cart Software

    Hey Kristi, Ive used a few different shopping carts Miva, Yahoo, Prostores and OSCommerce. Yahoo is a beast, if your not comfortable with PHP in Oscommerce, I would not even attempt RTML with Yahoo. Miva is nice but has limitations and if you want a new module expect to pay handsomely for it...
  3. sheanhoxie

    Internet Explorer, the devil of all browsers. - Please help my layout issue

    Set both class leftheader and rightheader to float left, then setup an alternate stylesheet for IE to override the leftheader width=278px !important; Heres an earlier post if you need help setting up an alternate IE stylesheet
  4. sheanhoxie

    Adapting for Larger Screen Resolutions

    Yea, center your div by using margin: auto and text-align: center (make sure you reset the text-align to left in your containing div though or else your entire page text will be centered!). Then just set a repeating background for your body using css like this: body {background-image...
  5. sheanhoxie

    css ie6 fix

    JNJC is right except that using the * is a hack and you should really be using a separate stylesheet for IE You can do so by using: <!--[if IE]> <link rel="stylesheet" type="text/css" href="ie_stylesheet.css"> <![endif]--> Post this right after you post your normal stylesheet...
  6. sheanhoxie

    getting visitors but no buyers

    Hey Larry, I agree the site isnt very professional looking at all. The store, sadly, is even worse. Without having to hire someone to redesign your site, I would suggest taking some photos of your packaging and creating detailed descriptions about each item. Clicking on your dip selection I was...
  7. sheanhoxie

    Working from home Web Design

    Well it depends on how you define "easy". Since your just getting started and Im guessing dont know a whole lot about web design or development its probably gonna be hard to just get a job with a company and work from home. That being said, once you do know your stuff, I've found that its really...
  8. sheanhoxie

    Joomla friend or foe?

    Ive used Joomla in several websites and I love it as well. Ive never had to reset the password, but jnjc is right, there is always a way with mysql. Log in and find the admin password entry (or go to joomla forums and search, Im sure this isnt the first time someone has forgotten their...
  9. sheanhoxie

    In over my head?

    yea Id recommend a book, its nice to have reference on hand without having to scour the internet for a lot of your answers. Heres a good one HTML: Definitive Guide. Also check out W3 Schools they have a lot of helpful beginner articles
  10. sheanhoxie

    Best and Most Important Website Design Software

    I dont really use "Web Design" software, but I would probably say the best that I have used would be Dreamweaver. Easy to use and robust offering compared to a lot of other wysiwyg editors
  11. sheanhoxie

    Confused with the title of my webpage....

    Heres a starter for you, search W3 if you need a different doctype <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>My HTML Doc</title> </head> <body> <p>… Your HTML content here …</p> </body> </html>
  12. sheanhoxie

    Can you make a good template using notepad and html?

    I personally like Notepad++ With that being said, if your a newbie, its probably easier if you start with a wysiwyg editor and then you can take a look at the code of what your creating using the program. I think you can download a fully functional trial version of Dreamweaver from Adobe.com
  13. sheanhoxie

    Looking for a good text editor

    If you were a PC (http://www.youtube.com/watch?v=9V7NoRjI0H0) I'd say Notepad++, sadly though, your a mac :-(
  14. sheanhoxie

    odd pic difficulty

    Can you post a sample?
  15. sheanhoxie

    Web design - meeting with customer?

    Exactly. Increase the cost and call it a training fee
  16. sheanhoxie

    extreme newb question: IE vs FFox

    Looks fine for me too on both... if your still having trouble or for future reference you can always create two separate stylesheets. One that works for IE and one that works for FF. When your calling the stylesheets in the head of your doc, call the FF stylesheet first, then follow with...
Top