Search results

  1. smoovo

    Help for a JS beginner

    It's not a JS issue. Just add this line of code target="_blank" to you links. <a href="..." target="_blank">Facebook</a>
  2. smoovo

    Change middle of the header

    You have two options, DB based content and folders based content. DB Based All the content saved in the database and placed in it's place on the page. While clicking on a flag (language link) it will change variable (you can use either sessions or cookies) that pulls the data of the new...
  3. smoovo

    How did they do that???

    Part of the image (left side) is static, and part of it (right side with the artists) is dynamically changing with Javascript. You can see that all of the images are one above the other, and you can see this JS for the changing script.
  4. smoovo

    Good slide shows, intergrated into site flow.

    jQuery Slideshows Look at this page, you have #4 and #19 that looks a little similar for what you are looking for.
  5. smoovo

    Webcrea

    It looks very good and effective. The text is good for SEO, so leave it.
  6. smoovo

    Trying to make the text in a list of links smaller

    No problem.. My pleasure :).
  7. smoovo

    Directing a text link to a different part of the same page

    Example: The link... <a href="#spot">Spot</a> The spot on the page... The <div> can be also <h1> or something else... <div id="spot">...Content...</div> This will do the job.
  8. smoovo

    Sending .com traffic to a .co.uk site

    XeHSean is right, this is the best way to do it. Just go to your .com domain's settings panel and change it to "parking domain" on your other .co.uk domain. Other methods are involved with hosting... You don't want it. ;)
  9. smoovo

    Webcrea - Web Designing Company

    Sure, but first delete this post and post it in the right place, under "website reviews" title.
  10. smoovo

    Links in to pages that no longer exist

    You too jeanm, it was my pleasure. :)
  11. smoovo

    Trying to make the text in a list of links smaller

    You have written the style wrong, if you are using "id name" you don't use the "element name". #ghan-order ul li a{...} The browser see the id ("#ghan-order") that points already to the list, and looking for the next thing... a new list ("ul") inside it. If you had "ul" inside "ul" it was...
  12. smoovo

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

    Can you please post all the pages involved?! I can't help without seeing inputs and outputs... Sorry.
  13. smoovo

    Problem in mysql statement and if condition

    Sorry, you didn't say you need help with that too, i looked on your statement only. See your other post for answer.
  14. smoovo

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

    couple of things: 1. To use a database you need to connect it. See how here. 2. Use float() not (float), there is no such a thing. $inqty[$ctr] = (float) $inqty[$ctr]; => $inqty[$ctr] = float($inqty[$ctr]); 3. When you are using INSERT you have fields and values, keep them...
  15. smoovo

    Hi there!

    Welcome, and have a Mary Christmas... :)
  16. smoovo

    Problem in mysql statement and if condition

    AND => && OR => || SO your statement will be if ($cloth_type == 'AAA' || $cloth_type == 'BBB' || $cloth_type == 'CCC') { | => shift+\
  17. smoovo

    Links in to pages that no longer exist

    Yes. The first part - any file name with .html extension will redirect. The second part - the location of the file to be directed to. In this case you want any .html file to redirect to the same name but a different extension. The second part has to be a full path, since it is indicates...
  18. smoovo

    Report Spam Thread

    One more http://www.webdesignforum.com/14366-how-use-keywords-seo.html
  19. smoovo

    need some help to display images from mysql with php

    Please post your output, screenshot, or text of what appear on your screen. If it's a link url, like "images/image.jpg" it should be coded like this... echo "<img src=\"".$stripslashes($row['image'])."\" alt=\"\" />"; But still, screenshot will be helpful.
  20. smoovo

    Report Spam Thread

    Here is a spammer http://www.webdesignforum.com/14369-hoster.html
Top