Search results

  1. farscapeone

    Living forever and war?

    Why is there always some excuse for war? Some say it's "human nature", some say it's "god". Those are excuses made to justify the war, not the causes.
  2. farscapeone

    Check out this random website I am working on

    With all do respect that "dude" does not know what the hell he is talking about. If he wants exactly that shade of blue, you'll then need to change the background color. Right know, those two just doesn't match.
  3. farscapeone

    Change background color with JavaScript?

    1. Do you actually have an element with id="uptd2"? 2. Your function does not accept any arguments. You should have done it like this: <div id="uptd2" onclick="change('green')">change background color</div> .... function change(color){...
  4. farscapeone

    WebFuzions.co.uk

    You don't need an intro page.
  5. farscapeone

    jquery image gallery

    Yea, right: http://www.1stwebdesigner.com/design/fresh-jquery-image-gallery-display-solutions/ http://vandelaydesign.com/blog/web-development/jquery-image-galleries/ http://webdeveloperplus.com/jquery/21-brilliant-jquery-image-galleryslideshow-plugins/
  6. farscapeone

    Check out this random website I am working on

    That is definitely not the kind of blue you should be using with a black background. It's hurting my eyes :) My suggestions: #content { color: #559fff; } .title2 { color: #d139ff; font-size: 18px; letter-spacing: 1px; } And put some space between paragraphs to make...
  7. farscapeone

    Are you a hard worker and hungry for success?

    Currently I'm working on several Magento projects and believe me it's HARD WORK. I do them for my clients (that probably answers your question about earning money). As for the success, you'll have to define it before I can answer to that question.
  8. farscapeone

    Help with Framesets Desperately Needed! (Please)

    If you want to make layouts fast you should consider CSS grid systems. They are actually pre-made layout systems that let you make layouts as easy and fast as possible. There are many css grid systems and even tools to make your own but I find http://960.gs/ pretty good. It even have templates...
  9. farscapeone

    What Programming Language should I learn?

    If you want to be able to make windows based software and you want to be able to do it fast, then Delphi is the right choice. There is one thing though, its' not free :(
  10. farscapeone

    My Blog

    You used blue in your header for blog name background. I guess you should stick to that. Try this one: #16a1df
  11. farscapeone

    Photography

    @leafypiggy: if you look at it better you can see a spiders net holding the droplets.
  12. farscapeone

    Photography

    Truly amazing!
  13. farscapeone

    My Blog

    First thing I noticed is that there's not breathing space between your content blocks. Main content column and the right sidebar are almost touching and images don't have any space around them that should separate them form the content (text). The other problem is that you used the same color...
  14. farscapeone

    Akinator - You won't believe it :)

    I don't know about you but for me it worked just fine for Mike Oldfiled, Dani Filth and even Aeryn Sun (character from Farscape).
  15. farscapeone

    Akinator - You won't believe it :)

    Think about a famous character, reply to a few questions of Akinator the magician, and whoala he guesses it right (most of the time)!!! You should try it. It's so fun! http://en.akinator.com/
  16. farscapeone

    How to change a home page picture on each refresh / reload

    How could I refuse to help when you put it like that :)
  17. farscapeone

    Living forever and war?

    After my previous thread about living forever, I saw that most of the people that wanted to live forever would use that power to help others. That's when the other question hit me. Would there be wars if we all live forever?
  18. farscapeone

    How to change a home page picture on each refresh / reload

    OK I'll try to explain it as simple as I can and if you want more you'll have to learn PHP. I will only help you make this particular peace of code work. PHP code is written inside of HTML. The only thing you'll have to do is rename the extension of your ".html" (or ".htm") file to ".php"...
  19. farscapeone

    Live forever?

    That part was left out intentionally ;)
  20. farscapeone

    How to change a home page picture on each refresh / reload

    I know an easy way to do that with PHP. //path to the image directory $directory = "images/"; //get all image files with a .jpg extension. $images = glob("" . $directory . "*.jpg"); // get random image index $rand_img = array_rand($images, 1); // display the image echo '<img...
Top