Search results

  1. CaldwellYSR

    Completely Stumped...

    I second this motion and have no idea how to use print.css or adobe acrobat.
  2. CaldwellYSR

    what program should i use and HELP!!!

    Do NOT bump a 2 year old thread so you can suggest something as ridiculously terrible as wix.
  3. CaldwellYSR

    Question about website

    Probably has something to do with whatever redirect you have going on there... your domain: http://www.cristianpestritu.com/ redirects to http://www.cristianpestritu.com/#!home/mainPage So whatever your index page is... that's where you need to put the Deceiver thing on the title...
  4. CaldwellYSR

    Templates

    The template will have a license that you'll have to read. Most if not all free templates will specifically say "not to be used for commercial use" which means you cannot, under any circumstances, charge a client for a site using that template. Then most templates you pay for will come with a...
  5. CaldwellYSR

    How to adjust design for different browsers?

    Yeah.... ditch IE and kill everyone still using it.
  6. CaldwellYSR

    How to adjust design for different browsers?

    Unrelated question here but what the crap is it with templates doing this span stuff?? <li><a href="Whatisllf.html"><span><span>What is LLF?</span></span> </a></li> Seriously what the <span><span>Stupid words</span></span>??? What does that do for anything?
  7. CaldwellYSR

    Mystery: CSS not showing in IE8

    I don't know if this is the case and I don't have (or want) IE to test it on but try deleting the media queries. I think I remember reading somewhere that IE doesn't support them (along with you know everything else that's web standard). Anyways try deleting them and see if that helps, then if...
  8. CaldwellYSR

    Hi there, newbie here....

    So you asked this question and have now waited over an hour. When you could have asked google and probably found the answer yourself... Tutorials: Link 1 Link 2 -> Actually uses some js at the end but only for aesthetic changes not the actual functionality. Link 3 -> Video tutorial
  9. CaldwellYSR

    Appear and Disappearing Elements

    Your code would look like... <script> $(document).ready(function() { $('#showHiddenBlock').click(function() { $('.name').show(); $('#newButton').show(); $('#showHiddenBlock').hide(); }); }); </script>
  10. CaldwellYSR

    Click to Expand?

    User Chrome's inspector or Firefox's firebug to find the code. Here's what I found to make it happen... $('.zoomer').click( function() { if (!$(this).hasClass('open')) { height = $(this).parents('.switch').find('.pic-2 img').height() + 50...
  11. CaldwellYSR

    drop down: touch events

    Yeah assuming a basic site who's audience doesn't dictate in any way I would go mobile most of the time. I don't have any statistics to back it up but I imagine there are alot more people using their phones to get online than using screen readers.
  12. CaldwellYSR

    drop down: touch events

    The hover selector works if you're using display: none to display: block. If you're doing it with positioning then it won't.
  13. CaldwellYSR

    drop down: touch events

    There's no reason to use javascript for this. As a matter of fact it's a bad idea to use javascript for this. It can easily be done with CSS. Tutorials: Link 1 Link 2 -> Actually uses some js at the end but only for aesthetic changes not the actual functionality. Link 3 -> Video tutorial
  14. CaldwellYSR

    How can I change the id in javascript?

    Yep, the beautiful thing about jquery is you can still do all the same things you would do with core JS... you just have extra stuff that you can also do.
  15. CaldwellYSR

    How can I change the id in javascript?

    What I would do is set up a function for what you want to happen in stay.click then you can call that function in both situations. For instance... function stayClick() { alert("Woo hoo it was clicked"); } $('.stay').click(stayClick()); /* I can't remember if you need the parens or not */...
  16. CaldwellYSR

    Need advice from the pros

    Liar... No Then hire a professional who does this for a living Here's my recommendation. If you want a website you should get a professional to design it. These drag and drop programs you're talking about put out bad code and they flat out don't work. With a professional you'll have...
  17. CaldwellYSR

    How can I change the id in javascript?

    I'm 99.999999% sure that's what he's trying to do here... he's trying to avoid jquery and learn core js.
  18. CaldwellYSR

    How can I change the id in javascript?

    That code looks good to me, should work fine.
  19. CaldwellYSR

    How can I change the id in javascript?

    You can add a class by saying document.getElementById("red").className += "blue"; removing classes can probably be done with the replace function document.getElementById("red").className = document.getElementById("red").className.replace("blue",""); but I haven't actually...
  20. CaldwellYSR

    positioning ap divs

    Putting a question mark at the end does not make it a question... ap divs are not the way to go 99% of the time...
Top