Jump to content

Andrew86

Members
  • Posts

    20
  • Joined

  • Last visited

Profile Information

  • Activity
    Other

Andrew86's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Ciao a tutti, come da titolo vorrei modificare lo sfondo del colore alle immagini dei prodotti in vetrina, ma non so proprio come fare... Se la cosa non dovesse essere chiara vi faccio un esempio: carico su ps un'immagine che ha lo sfondo bianco, io invece vorrei farlo diventare es. giallo. Come si fa? Uso la 1.5.3 E' dunque possibile senza l'ausilio di photoshop? Grazie.
  2. i have search some jquery box like this: http://webdesigntutsplus.s3.amazonaws.com/tuts/316_modal/source/index.html font donwload: http://www.freshdesignweb.com/35-useful-jquery-javascript-popup-window-dialog-box.html the pack contein css files, javascript and .js file but if a put all in correct folder, all font size of site change...
  3. hum, buy? no, i'm near at the solution, I thought that someone could me help...however thanks
  4. this is an example: <!DOCTYPE html> <html> <head> <script> function myFunction() { alert("I am an alert box!"); } </script> </head> <body> <input type="button" onclick="myFunction()" value="Show alert box"> </body> </html> try it on: http://jsfiddle.net/ But i don't want an url in html, but a simple box !
  5. a window popup without url riferiment and in these include a message for the clients an oder button of "confirmation order" that confirm and return in home page for a new order.
  6. Hi guys, how i can make a small popup with a button of interaction? The window not must be a "url"
  7. The question was not difficult...by the way, this is the solution for "add + minutes" : <script type="text/javascript"> <!-- var twentyMinutesLater = new Date() twentyMinutesLater.setMinutes(twentyMinutesLater.getMinutes() + 30); var ore = twentyMinutesLater.getHours() var minuti = twentyMinutesLater.getMinutes() if (minuti < 10) minuti = "0" + minuti var suffix = "AM"; if (ore >= 24) { suffix = "PM"; ore = ore - 24; } if (ore == 0) { ore = 00;} if (ore < 10) { ore = "0" + ore } document.write(ore + ":" + minuti + " ") //--> </javascript>
  8. the current javascript is correct and i can see clock correctly, but i'd want add a form that add 30 minutes! for example: now are 13.45 + 30 minutes = 2.15 ! how i can add 30 minutes!?
  9. You don't understand ! If i add 30 minutes, what form i must add?
  10. Good day, i'll want to add 30 minutes on clock. This is my current script: <script type="text/javascript"> <!-- var currentTime = new Date() var hours = currentTime.getHours() var minutes = currentTime.getMinutes() if (minutes < 10){ minutes = "0" + minutes } document.write(hours + ":" + minutes + " ") if(hours > 11){ document.write("PM") } else { document.write("AM") } //--> </script> </h4> Thank you !
  11. tpl files? for exsample: /themes/default/category.tpl i must add <FORM><INPUT TYPE="BUTTON" VALUE="Go Back" ONCLICK="history.go(-1)"></FORM> ??
  12. Thanks for answer. It's a simple button "back" like this: http://www.crowderas...backbutton.html I'll want insert it in navigation menù, but how and where ? .css or .html files ?
×
×
  • Create New...