Jump to content

noober

Members
  • Posts

    124
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

noober's Achievements

Member

Member (2/5)

0

Reputation

  1. I don't think you have to use a cross-domain file with youtube. Are you embedding by using the iframe or "old embed code"? As for the other js errors on your page: cigicigi-ed.js needs to be loaded after jquery.
  2. How will paypal refuse a transaction that never actually occurred because it was never completed?
  3. It makes perfect sense that the inner div couldn't be any bigger than the container div. That's the exact reason why you would put div2 inside of div1. If you want both to be "free", don't nest them inside of each other. <div id="div1" style="position:fixed">some content</div> <div id="div2" style="position:fixed">big content</div> It's a shot in the dark, but I believe you might be able to make the inside div bigger than the container div, if you don't have overflow:hidden set in your css. I could be wrong though.
  4. You have a lot of text and links the same or similar color and nothing honestly stands out. I would suggest finding a good graphic designer to help you out.
  5. Haha. Duly noted. Thanks.
  6. Have a hidden form field that tells your ajax and SQL which page/id it's on, then you can insert the comment into the database. Each page will get the comments from the database on load, but on success of your ajax, insert the comment into the page by using .append() or whatnot. This will be "faking" the insertion of the comment for the user until it is reloaded.
  7. It works in Chrome and IE7-9 for me, but you usually see something like this when the container doesn't have enough width set. I don't think that's your problem, but they are obviously not floating correctly.
  8. Custom work? See if someone will do it for you on fiverr? lol. I'm not sure you want to have something that people need to double-click for it to work. I never double click anything unless it is an icon on my desktop.
  9. You would check the value of the input selected, then pop-up your message. Make the value for each radio different. <label><input type="radio" name="subscription_status" value="0" id="subscription_status_0")>Subscribe</label> <label><input type="radio" name="subscription_status" value="1" id="subscription_status_1")>Subscribe</label> Something like this would work in jQuery (I haven't tested it): $('#yourFormId').submit(function() { var myValue = $('input[name="subscription_status"]:checked').val(); if(myValue == 0){ //popup message 0 here } else{ //popup message 1 here } return false; });
  10. It's a shot in the dark, because I haven't done much with responsive design, but I would guess you wouldn't be able to accomplish this with css alone. You will probably need some javascript.
  11. It's not bad, but very basic looking and could use a lot of work in terms of the logo, and overall design. Your paragraphs look too "smushed" together. Increase your line-height for better readability.
  12. I just launched a new site today. Though the header needs to be designed better, what do you think? I'm trying to get this in a viral state of mind through facebook and hopefully twitter shares in the near future. I have to warn, there is the "F-word" used once on the front page. Thoughts? http://www.breakupmemos.com
  13. Looks good to me. Simple and easy.
  14. Try fiverr, tenrr or o desk. I'm pretty sure no one's going to spend their time programming that for free.
  15. You should have no problem doing this since both sites are on the same server. Just point the save path in your php code to the right folder.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.