Search results

  1. L

    What should I move onto next?

    HTML, then CSS, then jQuery, then Wordpress alongside PHP
  2. L

    html columns whose width automatically changes according to their content

    Ok. I won't even use tables for data. Have you guys gone crazy? http://cssgrid.net/ Download their CSS and you have a website that is fluid down to mobile. NO TABLES, just clean divs with percentage-based widths.
  3. L

    Scale contents of an iframe?

    Wow I severely misread that post. I stand corrected.
  4. L

    Gap problem in a page with php!!

    Yeah.. can we see the code?
  5. L

    Raising the Navigational Bar

    I never said they weren't allowed, I just said they'll cause CSS validation errors. If he were to use a negative value, then I guarantee it would result in an error...
  6. L

    Scale contents of an iframe?

    It's possible to do it dynamically. Here you go. http://ramanisandeep.net/2009/12/16/how-to-dynamically-adjust-an-iframe%E2%80%99s-height/ -Louis
  7. L

    Raising the Navigational Bar

    The problem is that the website won't properly validate. Search engine crawlers will see negative values and assume that something is messed up on the site, thus causing them to "hiccup" and leave, which means they won't crawl through your site deeply enough. Regarding my code: #main_nav ul {...
  8. L

    Social Networking CMS

    BuddyPress.
  9. L

    Raising the Navigational Bar

    Try not to use negative values. Here you go (line 12 of nav.css): #main_nav ul { margin: 0px; padding: 0px 10px 10px 10px; }
  10. L

    Difference Between Chrome and Firefox

    On line 99, you have: <div class="mod" id"mod5"> Replace with: <div class="mod" id="mod5"> Then (and this is where you error is): Remove your max-height: 95% property from line 124 in mod3styles.css. I just checked in Chrome's inspector and that fixed the problem Hope this helps -Louis
  11. L

    Data collection database

    Any knowledge of Server Side Scripting (PHP, Python, etc.) and DBs?
  12. L

    Clothing Business Help

    For a clothing store? Magento + PHP Eclipse + Bluecherry. DONE -Louis
  13. L

    Why cant I get this Carousel to work?

    First check to see that your jquery.infinitecarousel.js file is located in the same directory as the file referencing it. I would then put it into a function that fires when the document is ready, like this: $(document).ready(function() { $('#carousel').infiniteCarousel(); }); Or if that...
  14. L

    CSS3 Menu transition problem

    Whenever possible, use Camtasia. It's pretty dope and the automatic zooming is better than I've ever seen with other programs
  15. L

    Responsive Web Design -Alert

    I've been dealing with mobile themes for quite some time now. The gold rush is on. All you need is to implement this (http://cssgrid.net/). It will make your life so easy.
  16. L

    Course of study, for this CSS book that I have? [Help/Recommendations?]

    w3schools.com should be your bible.
  17. L

    Jquery Clock

    Never saw this thread, but here is an idea. Create a variable with all possible time zones. Make a switch statement that detects all cases of this variable, and use a timestamp to adjust the other hand accordingly. For example, if it detects IST, and you are in EST, then your time should be 9.5...
  18. L

    Multiple Jquery Popup Boxes?

    I have done multiple jQuery dialogs so many times. I can easily debug your code if you want. It's rather easy. -Lou
  19. L

    Web Designers: School or Self Taught?

    I learned through both. It all depends on your learning style. If you get adjunct professors that are still in the field, you are better off. I've learned so much through experience after my degree it's unbelievable. One thing I dislike about university education is that they use tenure-ship. I...
  20. L

    Membership Site - Help

    Look up magento and authorize.net, and you should probably look into verisign -- problem solved
Top