Jump to content

PicnicTutorials

Advanced Member
  • Posts

    1,108
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by PicnicTutorials

  1. I don't know phpBB well enough but did you check the admin to see if her email is there? If so, you might be able to verify/confirm that email yourself.

     

    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.

  2. I signed up a good half hour ago - still don't see my sign-up email - it's not in junk, either.

     

    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/.

  3. Hi Eric,

     

    I don't have a whole lot of time but I would suggest that you start a post for each categories and then make them as stickies. The type of posts should be something like tips or articles that will give helpful information for new comers. Keep posting those types of posts regulary and you will eventually get people to respond and probably end up asking questions.

     

    I hope all is well with you and yours.

     

    Thanks Eddie good suggestion I will do that.

  4. 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.

  5. 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!

  6. 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/

  7. 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>

  8. 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.
  9. 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!

  10. 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.

  11. 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

×
×
  • Create New...