Search results

  1. smoovo

    Is Alexa Site Audit Worth It?

    I also want to try it, especially since Google has a lot of trust of their system. Let me know...
  2. smoovo

    table shown incorrect in Opera and Firefox

    It seems like your code have been written wrong. Your body tag should be placed before any iframe tag... You have placed it in middle of everything. Maybe that's your bug and maybe not, but you have to write it right first. I moved your "plat" class from the last span before the logo and it...
  3. smoovo

    Report Spam Thread

    This one is a serial spammer -> capoorravip. I think you should banned a serial spammer, it's ruing everyone's mood, really. I'm trying to see who needs help and i see the same spammed thread on each section... Very annoying. He has a new ones -...
  4. smoovo

    Help with connecting php.

    To use live view in DreamWeaver you also need to install a server side program. I would highly recommend on WampServer. Why? PHP is a server side files, and to build your pages it should go through its engine. WampServer provides an engine on your local machine, and that will process your pages...
  5. smoovo

    FTP? Drives me crazy

    First of all don't panic, it's just a matter of misunderstanding it's not a big deal. All of your firewalls should back to work, no need to disable or enable anything in it, your program (FileZilla) will do it automatically. You need: Host Name (domain.com), User Name and Password. If you set...
  6. smoovo

    trying to upload videos via php

    I have told you to get rid of the MAX_FILE_SIZE in your form. To limit your uploaded file just add a new statement before your "if" statement. Each 1000 you are writing is just 1KB, that means if you want to limit to 100KB you will write 100000, and for 100MB it will be 100000000. Or, you can...
  7. smoovo

    Drop Down Image Select.. thing?

    You have a select input with image to be placed (it has to be with id), on change it will fire a function to do something. <img id="image" src="image1.jpg" alt="" /> <select onchange="colors(this.options[this.selectedIndex].value)"> <option value="1">Red</option> <option...
  8. smoovo

    bg color deleted when i scroll to left or right in browser window?

    Give it "min-width" of your preferred width (i would give it 1000px because it's your website limited width you have used), and it will do the job. ;)
  9. smoovo

    Please help me with my html code. :(

    Let me know if you are still in trouble... :D I will send you fixed code.
  10. smoovo

    How to add a submit scheme on my site..HELP!

    You need a form with 2 inputs, email and file. then, you will submit the form to another page (not necessary) and it will be uploaded together with email notifying for the image link and whom it sent from. I'm hoping you are familiar with PHP, because this one has to be a server side program...
  11. smoovo

    flash website for mobile phones

    There is no way to use Flash website on Apple's devices (yet). Developers trying to build new apps to play Flash videos, but not a whole Flash website, because that devices can't let you use of Flash controls (menu links, forms, etc. are using Action Script). So you better start coding your...
  12. smoovo

    How To Put A Book On The Web?

    The best way to do it is with PHP. You will make one page that will contain "img" element. This page will generate new image name (for the source) with getting new parameter. It should look something like that... (it's just an example) page.php <?php if (!isset($_GET['number'])) {...
  13. smoovo

    Cant open downloaded PHP-templates

    PHP Compatibility To check if your page working without the template code, just make a copy of it (your index.php page from your template) on your machine. Make new index.php and type this code in it without adding anything. <?= "Working"; ?> Now, go to your main page by typing your...
  14. smoovo

    trying to upload videos via php

    You are missing semi-colon in your code (after print_r($_FILES['media'])), but that's one thing. Use this code instead of yours, i have made some changes and it's working. <?PHP $path = "uploadsvideo/"; $target_path = $path . basename( $_FILES['uploadedfile']['name'])...
  15. smoovo

    Please help me with my html code. :(

    The Gap Most of your problems are because of non-reset stylesheet. You have to reset your style that it would be no issues with the browsers. The lightest reset code is to add this -> body, p, img, h1, { margin:0; padding:0; border:none; } This way you won't have any gaps. Your...
  16. smoovo

    Sum of numbers that was insert will automatic compute and appear in total text field

    I'm not confused, to test and see results you have to get know the code, this is not a code it's a template or copy of something else. This way you won't get an answer for your issue.
  17. smoovo

    How to encrypt my MySQL password etc.

    You can't access MySQL DB with HTML, you need a server side language like you have mentioned in the end of your post. Server side language is never seen by the user, even if he/she want to. You will have your PHP/ASP (go for PHP ;)) set to connect with your database by host name, user name...
  18. smoovo

    Where Do I find this?

    First you should make your div vertical, for example: Width 40px and Height 500px. Now, position this div as Fixed (position:fixed;) in your CSS code, and give it distance from top and right. #stickyButtons { width:40px; height:500px; position:fixed; top:250px...
  19. smoovo

    WordPress Plugin - Business Listings/Directory with Google maps

    You won't find any solution because it's a custom programming not a plugin. Try using a web development company like ours to do the job, it will save time and money, because at the end you'll do it anyway. ;)
  20. smoovo

    Infinite 1080p

    MPEG files supported by all the new versions of browsers, includes MPEG4 1080p. Fades are made by video editor before uploading to server, there is no online player to do it (from what i know). To get help with this see this page for details.
Top