HTML - Adding A Pause Statement
im working on adding a scrolling text that i found online, but i want the text to pause for 1 second at the beginning of each new topic on the scroll menu
i tried adding body.pause(1) but i couldnt get that to work do i need to create a .css for this somthing like <style> pause2 { body.pause(2) } </style> and then call it in a tag <pause2> </pause2> Similar Tutorialshttp://www.htmlwebby.netne.net/home.html I recentally made this website and was wondering how to auto pause the video. Its linked to photobucket, because the same video on my computer was to big to get on website. By the way I used the Hello kitty picture, because it was a random picture on the internet, enough said. edit: auto mute would even be better I'm making a forum that has two types of users - admin(user level = 1) and normal(user level = 0). Only the admin users can create and delete categories from the forum. So i was wondering if I could put an if statement in the code below that would only allow the admin users to see the last two links. Something like if (signed in & user level = 1) then display the links HTML Code: <h1>My forum</h1> <div id="wrapper"> <div id="menu"> <a class="item" href="/forum/index.php">Home</a> - <a class="item" href="/forum/create_topic.php">Create a topic</a> - //if statement here for admin users <a class="item" href="/forum/create_cat.php">Create a category</a> - <a class="item" href="/forum/delete_cat.php">Delete a category</a> Ok, Hi all.... I have a registration form setup for signing up for motorcylce classes. What I need is, upon clicking submit, for the form to send the user to 1 of 3 different url's depending on which course they selected. So IF "Course A" is selected -then get url A Any help would be so awesome! Here is my code so far: <table width=80% table border="0"> <tr> <td valign="top"> <div class=contact1><br> <label for="title1">Rider Information</label><br><br> <input type="radio" name="title1" id="title1" class="radiobutton" value="Mrs.">Mrs.</input> <input type="radio" name="title1" id="title1" class="radiobutton" value="Mr.">Mr.</input><br><br> <label for="fname1">First Name</label><br> <input type="text" name="fname1" id="fname1" size="30" class="inputbox required" value="" /><br> <label for="name1">Last Name</label><br> <input type="text" name="name1" id="name1" size="30" class="inputbox required" value="" /><br><br> <label for="street1">Street Address</label><br> <input type="text" id="street1" name="street1" size="30" value="" class="inputbox required" maxlength="100" /> <br> <label for="city1">City, State</label><br> <input type="text" name="city1" id="city1" size="30" class="inputbox required" value="" /><br> <label for="zip1">Zip</label><br> <input type="text" name="zip1" id="zip1" size="30" class="inputbox required" value="" /><br><br> <label for="phone1">Phone</label><br> <input type="text" name="phone1" id="phone1" size="30" class="inputbox required" value="" /><br> <label for="mobile1">Mobile</label><br> <input type="text" name="mobile1" id="mobile1" size="30" class="inputbox" value="" /><br <label for="email1">EMail Address</label><br> <input type="text" id="email1" name="email1" size="30" value="" class="inputbox required validate-email" maxlength="100" /><br><br> <label for="birthdate1">Date of Birth (mm-dd-yyyy)</label><br> <input type="text" name="birthdate1" id="birthdate1" size="30" class="inputbox required" value="" /><br> </div> </td> <td valign="top"> <div class="contact2"><br> <label for="title2">Emergency Contact</label><br><br> <input type="radio" name="title2" id="title2" class="radiobutton" value="Mrs.">Mrs.</input> <input type="radio" name="title2" id="title2" class="radiobutton" value="Mr.">Mr.</input><br><br> <label for="fname2">First Name</label><br> <input type="text" name="fname2" id="fname2" size="30" class="inputbox required" value="" /><br> <label for="name2">Last Name</label><br><input type="text" name="name2" id="name2" size="30" class="inputbox required" value="" /><br><br> <label for="phone2">Phone</label><br> <input type="text" name="phone2" id="phone2" size="30" class="inputbox required" value="" /><br> <label for="mobile2">Mobile</label><br> <input type="text" name="mobile2" id="mobile2" size="30" class="inputbox" value="" /><br> </div> </td> </tr> <tr valign="top"> <td colspan="2"> <hr> <br>How did you find us?<select name="findus" id="findus"><br> <option selected>please select</option> <option value="Google">Internet (Google)</option> <option value="Internet">Internet</option> <option value="Friends">Friends</option> <option value="Newspaper">Newspaper</option> <option value="Dealership">Dealership</option> <option value="Ride Shop">Ride Shops</option> </select><br><br> <hr><br><br> <input type="checkbox" id="agbok" name="agbok" class="inputbox required" /> <label for="agbok">By clicking "Submit" you certify that you have read the <a href="http://arizonamotorcyclesafetycourse.com/new/index.php?option=com_content&view=article&id=11">Terms & Conditions</a>, and Course Waiver and that all information provided is correct and accurate.</label><br><br> </td> </tr> <tr valign="top"> <td colspan="2"> <input type="submit" class="button validate" value="Submit"> </td> </tr> </table> can i put a conditional statement in a .css file ? im having trouble with getting my div & or hr to work in every browser i fix something on 1 browser i loose something from another when im coding the site... i want to know if i can put a statement that if browser internet explore execute this set of rules, elseif execute these set of rules... I have tried to use a variable in mailto: in order to protect my email address from spammers. Am I doing something wrong or is it simply not possible? $info="my@email.com"; /*email address is stored in email.inc and is moved to the script with the include() statement.*/ $recipients = '$info'; I have a select box like so Code: <select name="something" Size=10 multiple style="font-family:monospace; font-size:8pt"> <option value='opt1'>Option 1</option> <option value='opt2'>Option 2</option> <option value='opt3'>Option 3</option> ... <option value='opt9000'>Option 9000</option> </select> Now Let's say that I wanted opt45 to be preselected, how do I get the select box to position the scroll bar to where opt45 would be in the list. I've figured out how to preselect things, but the user can't tell because it's 35 lines below the select box. Hello!I would like to know if there is another way preselect OPTION VALUE than what I have done below? If I use what I have done below to dynamically the "SELECTED VALUE=" AREA WITH A _get/$VARIABLE, I will end up with 2 identical entries in my drop-down list (such as 2 AVA entries) and I would like to avoid this. Any ideas on how I could avoid this using a different type of method on selecting a default item? Thank you! Code: <SELECT NAME="custom2"> <OPTION SELECTED="SELECTED" VALUE="Lettering Style ADX">ADX</OPTION> <OPTION VALUE="Lettering Style AJA">AJA</OPTION> <OPTION VALUE="Lettering Style AMZ">AMZ</OPTION> <OPTION VALUE="Lettering Style ATH">ATH</OPTION> <OPTION VALUE="Lettering Style AVA">AVA</OPTION> <OPTION VALUE="Lettering Style BAM">BAM</OPTION> </SELECT> Ok Say I Have One Text That Ses 1.5 And I Want To Add 0.5 To IT The Answere Would Be 2.0 Can Javascript Do That Properly I Dont Need To Know How To Do It I Can Manage Just Querious If It Will Add Fractions Before I Start Working On It? Here at www.ultdmovies.com, I'd like to know how to add another button next to contact and say "about". Also, how can I edit the buttons to make them more stylish, like borders, colors, etc? Is it possible to add a poll to a html or php site? hey can someone please help i am having trouble with adding a banner when i just to add it the picture does not show what could i be doing wrong??? Hey... I am working on a site for me and my friends, and I have a question. See this website. As you can see I have used imagemapping to link the area where home is written, to bring you back to the frontpage. I would like to know how i could put a textbox or table inside the white square, or possibly a frame linked to the other sites. Code: Here is my HTML coding:<HTML> <HEAD> <TITLE>Calypto Productions Website</TITLE> </HEAD> <BODY bgcolor= "#000000"> <style type="text/css"> </style> <img src="http://calypto-productions.webs.com/atomicfrsteutkastdz0.png" usemap = #example border=0> <map name=example> <area shape=Rect Coords="262, 125 , 406, 170" Href="http://calypto-productions.webs.com/alt.htm/"> </map> </BODY> hi people, i have this code Code: <tr valign=\"top\"> <td align=\"center\" width=\"1%\"><a href=\"preview.php?id=".$arrayId[$scriptOffset+1]."&ref=browse&offset=".$scriptOffset."\"><img src=\"thumb/".$arrayImage[$scriptOffset+1]."\" STYLE=\"border: none;\"></a></td> <td ><font face=\"verdana\" size=\"2\"><b><i>Nume:<br>Marime:<br>Format:<br>Cat.:</i></b></font></td> <td ><font face=\"verdana\" size=\"2\"><i>".$arrayName[$scriptOffset+1]."<br>".$arraySize[$scriptOffset+1]."<br>".$arrayFormat[$scriptOffset+1]."<br>".$arrayCatagory[$scriptOffset+1]."</i></font></td> <td ><font face=\"verdana\" size=\"2\"><a border='0' href=\"preview.php?id=".$arrayId[$scriptOffset+1]."&ref=browse&offset=".$scriptOffset."\" ><img src=\"images/descarca.jpg\" STYLE=\"border: none;\"></a></font></td> </tr> and i wanna to add an image here can somebody tell me how to add the image in the html code? Does anyone know how to add a favicon to each of a site's pages using the CSS Style sheet as apposed to putting the code on each page? I created the css below. It is a list that contains my navigation buttons on the left hand side of the page. The buttons work good. Now, I want to add some pictures to the left of the buttons. When I do this a space becomes apparent between the buttons. (top & bottom). I tried adding a layer but like I said it creates a space between buttons. Any help is appreciated. Thanks,. .Blockhead #navcontainer { width: 200px; } #navcontainer ul { margin-left: 0; padding-left: 0; list-style-type: none; font-family: Arial, Helvetica, sans-serif; } #navcontainer a { display: block; padding: 3px; width: 160px; background-color: #669966; border-bottom: 1px solid #eee; ; background-image: none } #navcontainer a:link { color: #FFFF00; text-decoration: none; } #navcontainer a:hover { color: #33FF99; ; background-image: none ; background-color: #669999 } #navlist a:visited { color: #CCCCCC; text-decoration: none; Hi there.. i added some menu buttons for my site this is the code for the menu button <BUTTON TYPE=SUBMIT> <IMG SRC="../graphics/sfsmile.gif" HEIGHT=97 WIDTH=105 ALT="Starflower" ALIGN="ABSMIDDLE"> <STRONG>Send It In!</STRONG></BUTTON> Or go here i took this code from this website http://www.htmlcodetutorial.com/forms/_BUTTON.html you have an example here Now i added them but i have no clue how to add a link to this button so that when i click on it sents me to a page.. any ideeas pls ? Can anyone help me so that i can add a link to this menu button ? Thx I forgot how to add an avatar my home page URL. did a search but got no results. TIA Hi All, After hours of searching, I have yet to find a solution to my problem so I am turning to you all for advice. Here is what I am trying to accomplish - I would like to add an event to a <DIV> to make the background image change when the user mouses over the <DIV>. Further, I would like to turn the entire <DIV> into an <A>, so that no matter where the user clicks in the <DIV> they will be taken to a new page. The two obstacles I am running into are semantics and support. Simply wrapping the <DIV> in an <A> tag does not work because the browser does not interpret <A> as a containing element. Inserting the <A> inside the <DIV> I run into the same problem - the <A> just sits at the top of the page and does not contain anything. As for the event - :hover would suffice if IE5 & 6 supported it for <DIV>, but as we all know this is not the case. Since 60% of users are still running this [expletive] browser, I need to find a workaround. My guess is that there is JavaScript somewhere that will solve my problem - but I have not found anything yet. Can anyone direct me to an article or other resource that offers some info on the aforementioned? Or has anyone done this themselves that can offer a few pointers? Thanks in advance! I'm trying to add an anchor to my blog, but without having any link to it in the page itself. I just want to be able to have a specific address for the part of the page that I want to jump to, so that I can cite that address in other places. Is there any way to do this? I tried inserting this in a random part of my page: <a href="#name"></a> And then this immediately above where I want the anchor to be: <A NAME="name"></A> But...going to mywebsite.com#name did not take me to the anchor, it just opened the page like normal. Ideas? Hi all, I currently have images for my corners and I'm trying to add corners via CSS. http://www.css3.info/preview/rounded-border/ I am struggling quite a lot. Could anyone look at the website I'm working on and just advise me on the code change please? It's really simple but I keep getting repeating images and all sorts. The website in question is http://www.karishmabhandari.com I would like white corners to blend in with the white content area. I've very much noticed this is in the wrong section if someone could move it for me please. |