Search results

  1. CaldwellYSR

    Mobile Site Developement

    Thank you very much, lots of information.
  2. CaldwellYSR

    Mobile Site Developement

    Are there any reliable, good resources online for learning how to develop a mobile site? I'd like to have a mobile version of my personal site but I don't really know what needs to be done to make this happen... I have googled it a bit but I figured it would be easier to ask than to sift...
  3. CaldwellYSR

    non-flash fallback

    Yeah screw flash, I didn't want to say it. Knew you would if I didn't ;)
  4. CaldwellYSR

    Log-in registration question

    Just don't make the registration script public. You handle all the registration information, get all of your users set up with a standard password and then let them change their password when the log in. Then all you need is a login script and not a registration script.
  5. CaldwellYSR

    non-flash fallback

    Can you possibly put the quicktime embed inside the object tag, between the image and the flash file? Or maybe you could nest another object tag inside the flash object tag that is the quicktime video? If none of these work my only other idea would be to use a try{}catch(err){} in javascript...
  6. CaldwellYSR

    non-flash fallback

    The easiest way to do this would be to use the object tag. You can set up fallback options for if the flash fails. I've never used it personally so I don't know if it will work with quicktime (help me out someone) but you can fall back to a still image in the absence of flash. <object...
  7. CaldwellYSR

    help with homepage login

    Like DesignerBill said, if you're wanting to handle user logins, you're going to need a secure database and PHP. Since you say you're "brand new" to this, I wouldn't suggest looking into something so big yet but if you're set and determined you'll need to learn php and mysql.
  8. CaldwellYSR

    Image Floating Right over 2 paragraphs

    Have the text in a div with only x width where x is the total width of the page minus the width of the image.For example... <style type="text/css"> #textContainer { width: 800px; /* Whatever other styling */ } #floatedImage { float: right; width: 160px; /* Whatever...
  9. CaldwellYSR

    If Statements

    Check this out. Hopefully it helps, I don't have time to try to explain it right now but if you still don't get it and nobody else has explained then I'll come back tonight and do it.
  10. CaldwellYSR

    Vertical Bars on banner image

    Hahahaha!!! Only a bit.
  11. CaldwellYSR

    Vertical Bars on banner image

    Awesome thank you! :D
  12. CaldwellYSR

    Vertical Bars on banner image

    My Computer Science teacher has a class webpage. She is having some issues with the banner having strange vertical lines on it. The banner is a few pictures mashed together into one image. The vertical bars are not supposed to be there. The image below displays the problem. I can't find anything...
  13. CaldwellYSR

    Some help with expandable navigation menu.

    There are plenty of tutorials online about this. Quick answer (I think this might only work on vertical navigation) Also note that the css should obviously go in an external file but to keep it easy on the eyes I went ahead and kept it all together. <html> <head> <title>new_file</title>...
  14. CaldwellYSR

    I hate IE

    I too hate IE I have the solution... it's really simple believe it or not... in the header you put this... <!--[if IE ]> <script type="text/javascript"> window.location = 'ie.html'; </script> <![endif]--> then ie.html looks like this... <!DOCTYPE html> <html> <head>...
  15. CaldwellYSR

    Table stays put in IE, but not in Firefox

    Simple answer..... don't use tables. Check this out learn it, love it :D
  16. CaldwellYSR

    Need basic CMS advice

    In my experience the easiest CMS for people that aren't web designers to pick up is Wordpress
  17. CaldwellYSR

    How to block a web site from web Browser using code

    Well if you're using firefox there are greasemonkey scripts to do that... even to block specific sites and specific times..... Need more information though...
  18. CaldwellYSR

    Creating a fixed header. Help!!

    I misunderstood the question, if you only want the content to reload and nothing else then you'll have to use an iframe.
  19. CaldwellYSR

    Creating a fixed header. Help!!

    So lets say all the code on his header is wrapped in a <div id="header"></div> tag. (I didn't look at the source so it may be different. In the CSS file you would put #header { position: fixed; /*Takes the #header out of the document flow and holds it in one spot in relation to the...
  20. CaldwellYSR

    Spry menu bar issue - space between?

    IGNORE WHAT I SAID BEFORE! the #header needs 180px height like kohncreative said.
Top