Jump to content

PicnicTutorials

Advanced Member
  • Posts

    1,108
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by PicnicTutorials

  1. The frame of the site went up in a few weeks. But the back end and the many - many fillable forms within took a long time. Click around. Let me know what you think and if you find anything that should be approached differently. Thanks! PS this is for a new biz I am starting. http://goo.gl/yZpRCv
  2. Google will only find things as it follows links just like us. Google cannot just look in your folders and index things. I'm 99% sure that's true.
  3. Lol I was going to do that and forgot. @Andrea I activated the account. You should be able to log in now. Let me know if it doesn't work.
  4. Huh that's not good. I've created many test profiles. Just created another to test. And they have all come through. One time it landed in junk. Can you look again? If not there can you try again please? it wont let you use the same email. So you'll have to use a dif if you have it. If not just grab a temp one from here https://www.guerrillamail.com/.
  5. Thanks Eddie good suggestion I will do that.
  6. They change by the minute. But to answer your question anything you post (except the big guys) come up in the searches after a few months. Exact name searches will show in a couple days.
  7. That is Robert I really appreciate it
  8. I have a folder in my domain called projects. Whatever I build goes into there until its done. Just upload your clients stuff there to show them. This way your not possibly tarnishing their domain with unfinished work in googles eyes.
  9. Hey guys and girls how are you? Hope all is well. I have a favor to ask. I just created a forum of my own here http://www.websitecodetutorials.com/forum/. I would very much appreciate it if some of you could make a few posts over there (or dare I ask be active in). Not in anyway trying to steal anyone away from here as this is a awesome forum and were I learned most I know. Just need some help getting it off its feet. As you can imagine, no body goes twice to a dead forum. I just need some help to create some momentum and then it should create it's own. Thanks!
  10. I don't know the answers to your questions but her is how I do it http://www.websitecodetutorials.com/code/php/how-to-html-form-with-php-js-captcha-validation.php
  11. Here is how http://www.websitecodetutorials.com/code/jquery-plugins/horizontal-website.php
  12. Always best to chose .com. Better to take a slight hit on your prefered domain than to take a .net or other. Best to be unique. If you pick a name that already has a large google presence your domain and site will be drowned out.
  13. I always keep my domain the same as my name. For seo and humans. I believe this is best
  14. I transfered over my old black and white site to this new one. I'm still fixing some broken links, and working on collapsing that intro text on the home page, and adding a nav up top. But other than that its mostly done. What do you think? I'm quite proud of it. Note the animation on and off. The fixed footer that goes 100%. The grab grass that auto fills the footer. Thanks! http://www.websitecodetutorials.com/
  15. like this <!doctype html> <html> <head> <meta charset="utf-8"> <title>kicking my butt!</title> <style> * { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; line-height: 1.5em; text-decoration: none;} header { height: 400px; text-align: center; background:#000; } .header-middle h1 { font-size: 16px; line-height:400px; font-family: Verdana, Geneva, sans-serif; color: #0F0; overflow:hidden; float:right; } </style> </head> <body> <header> <div class="header-middle"> <h1>Text to be centered vertically within the black box, but don't know how...</h1> </div><!--end of header-middle div--> </header> </body> </html>
  16. Hey Ben. Sorry I don't. I want to take this plane image and dip the wing down as if it were turning. Then up as well. I'm making a sprite with frames to use with jquery spritely. The end result will appear that the plan is rotating as it maneuvers around the screen. Of wait I do have an example here it is I just don't want to use that plane.
  17. If its just one line then just give it line height to match that of its container. If its multiple lines or an unknown height you can do it like this http://www.visibilityinherit.com/code/css-vertically-center-unknown-height.php
  18. Good morning, I need to rotate an image of a plane. But rotate it like the left wing is dipping down. Then I need to rotate the wing back up the other way. Making a sprite using jquery spritley for my new site design. thanks!
  19. I'm not familiar with html 5 as it is not done yet so I don't use it. But if nav is display block (as is a ul) then yes it would behave like a div. if it doesn't then your code changed its default behavior. The white disappears because you need to contain the floated li's. here are all the ways http://www.visibilityinherit.com/code/contain-floats.php
  20. Just wrap your nav in a div. by default the div will go 100% width. Put the background and shadow on the div. now just center your ul nav within that
  21. You need to get rid of all the html5 stuff. Only use html 4.01. It fine to write a separate sheet for ie but with a simple site like you have that is not nesisary. We can help you fix everything. Also I would ge rid of the large reset. Basically anything you didn't code get rid of it. You'll spend more time trying to figure out why then doing. Ie doesn't do html5. That's prob 90% of your problems.
  22. No don't have to do media queries. Just use display inline block with font size 0 on the li. And font size whatever on the a. Or you could go the display table way. I'd have to play with it but you can prob get rid of the surrounding div and display table the ul. And get rid if all the ie shit. That should be ie8+ too. But inline block is a perfectly fine solution. The one I'd prob use
  23. Inline block is probably your best bet. You can remove the frivolous stuff for ie6/7 as they are dead. Removing all white space between the li tags is one way to fix the white space problem. There are css fixes I don't remember what.
×
×
  • Create New...