Search results

  1. M

    SlideDeck issue, CSS Float question, & google CSE questions...

    Did you try var drawOptions = new google.search.DrawOptions(); drawOptions.setInput(document.getElementById('query_input')); as the previously linked document shows?
  2. M

    SlideDeck issue, CSS Float question, & google CSE questions...

    Did you try using your own form? That's probably the simplest option when it comes to styling, since it gives you the most control over the structure and presentation of the search form.
  3. M

    how to create login file...

    @netcalle64: note that you can delineate code with [CODE], [HTML] or [PHP] tags, as appropriate. That code gives a bad idea how to. The database should handle data operations (such as selecting data with given properties from a dataset) and programs the rest. As it is, the code wastes...
  4. M

    IE should never been invented!!

    Just as well. Forcing a link to open in a new window takes control away from users in just the sort of area it shouldn't. If users want a new browser or tab, they can open one themselves. New windows/tab have their place, but it's a very limited one (namely, pages that shouldn't be a part of a...
  5. M

    Call for Java Help!

    More than that, shubham, you need to ask a question well (see also Jon Skeet's advice).
  6. M

    SlideDeck issue, CSS Float question, & google CSE questions...

    Safari 5.0.3/Mac is fine. Make sure your version of Safari isn't outdated, and that Safari isn't fetching an old version of the style sheet from the cache. Don't rely on Dreamweaver for too much. Use the DOM and CSS inspectors in your browser. They'll show you which files define each ruleset...
  7. M

    SlideDeck issue, CSS Float question, & google CSE questions...

    What browser are you testing in? It works in FF 3.6 and Webkit browsers. It's just a matter of finding the correct selector. If you inspect the elements (using e.g. firebug), you'll find the following rules: /* at slidedeck.skin.ie.css, line 13 */ .skin-slidedeck dl.slidedeck dt.spine .index...
  8. M

    Specific Questions about AUP

    I'm prodding the admins for a more definitive response than I can give, but there are a few items that I'd like clarifications for: Is violence your only concern, or is there also a concern about pornography and CP? I can tell you right now, X10 has a very low tolerance for CP in any form, even...
  9. M

    SlideDeck issue, CSS Float question, & google CSE questions...

    The numbers aren't outside the columns, they have a background color that covers the background image. Try: dl.slidedeck dt.spine .index, dl.slidedeck dt.spine.active .index { background: transparent; } Until the features of CSS3 are settled and then widely supported, you'll have to use...
  10. M

    [PHP]: Handling Multidimensonal Array

    Iterate over the array, filling out another array. foreach ($source as $entry) { $byType[$entry['type']][] = $entry; } var_export($byType); /*Result: array ( 'x10' => array ( 0 => array ( 'link' => 'http://updated', 'type' => 'x10', 'vote' => 2...
  11. M

    problem with rewrite in htaccess

    By the way, be careful you don't double post.
  12. M

    Show dot files in CuteFTP

    What have you tried? Were you following instructions to show hidden files?
  13. M

    .htacces index.php

    Try searching x10hosting or the web at large for extensionless URLs. The topic has been covered many times before.
  14. M

    Suspension unwarranted

    Sadly, Wordpress is a CPU hog. Another possibility (if money is a concern) is to try different blogging software. Many can be installed via Softaculous or Fantistico in your site's cPanel.
  15. M

    Content-Disposition attachment

    Is this supposed to be a question? Since the resource resides on another host, your server either has to read it itself or tell the client where to find it by sending a redirect (i.e. setting a "Location" header). Think about it for a second: how is a client to fetch a resource directly without...
  16. M

    Quick search bar help...

    If you haven't set the font-family for the input, then the user agent styling will take precedence over inherited values, just as with the text color. You must override any user agent provided style that you don't want.
  17. M

    Quick search bar help...

    Sure we can, but that still means we have to wade through extraneous code (unless the linked page is a minimal test case), which (among other things) lengthens how much time it will take to fix your problem. If it's going to take too much time, many might not bother. If you want us to check the...
  18. M

    Quick search bar help...

    You should know it's hard to answer questions about source without seeing it. Your original sample has a hint about where to find the live page you're testing (somewhere on shotsoundstudios.net), but the main page doesn't lead anywhere. The only style sheet I can see...
Top