HTML - I Have A Question About Overlapping Div Tags And Forms?
I have both <div id="images"></div> and <form> on the right column of my page. I want to overlap the two of them, because the form is hidden so that when the viewer clicks on "contact us" the images div will disappear then the form appears, through behaviors. But the form is below the images div tag, so when I click on contact us, the images disappear, but the form appears on the bottom of the image div tag, its suppose to take the place of the images div tag instead.
_________ Similar TutorialsI've seen basic META tags for things such as Author, Keywords, Description, and Copyright (I think that's all of them). So I was wondering what are all the different META Tags and what do they do? I'm not sure if I'm using them correctly or not. Is this a valid format ? <a name="xxxx"><!-- --></a> I ask because it works in all browsers I use but not with IE 8 (Beta). I'm not sure if this is a bug in IE 8 or whether the syntax is strictly valid. If I use or space this will work in IE8 but again I am not sure if it is valid Thanks Harvey Hi, I hope I am posting this in the right place. I would like to insert the <h> tags to headings & sub headings in certain areas of a web page. But if I place the <h> tag next to the word or phrase that is relevant, it increases the font size. Am I ok to have the code like below or will the SE’s read everything between the tags, including the code & confuse the whole thing. Its just a case of wanting to not have the text as large as some of the <h> tags want to make it. <center><h1><font face="arial" size="3" color="000000"><b>My text here</b></font></h1></center> Hope you can help! Many thanks. Chris. Mod - Please Delete I am attempting to create a rather large form for users to fill out. When doing this does each text box have to have it's own form or should there only be 1 form with all the elements in it? Sorry for the basic question. Here is the example of my code: Code: <table width="200" border="1" bordercolor="#000000"> <caption> Account Information </caption> <tr> <td><form id="form1" name="form1" method="post" action=""> <label>First Name <input type="text" name="setup" id="setup" /> </label> </form> </td> <td><form id="form2" name="form2" method="post" action=""> <label>Last Name <input type="text" name="setup2" id="setup2" /> </label> </form> </td> <td><form id="form3" name="form3" method="post" action=""> <label>Address <input type="text" name="setup3" id="setup3" /> </label> </form> </td> <td><form id="form4" name="form4" method="post" action=""> <label>Zip Code <input type="text" name="setup4" id="setup4" /> </label> </form> </td> </tr> This is just a snippet of the code. Should I just have one form tag that is around all the text boxes? Thanks in advance, Scott Hi. I'm extremely new to html (began learning two days ago) and I'm designing a really basic site for an acquaintance of mine. The purpose of this site will be to promote/encourage people to join and or donate to a research project. So here's my question: What I would really like to do is have a form on the site with fields for first and last name, address, and e-mail, and make it so that when someone submits this information, an e-mail is automatically dispatched, and a counter on the site is moved up a notch. What's the best way of going about this? Like I said, I've been at this a very short period and I only know basic html stuff. Thanks a lot in advance for your help. Hi all. I'm designing a website and for the first time using div tags. The style is controlled by CSS. I'm trying to get 2 div tags to be positioned next to each other, side by side. How do I do this, I just can't get it to work. Thanks Trying to do something that seem like it should be a piece of cake... I have a website with 6 or so password protected directories for clients. I want to create a one login page for all of them. So UN=bob and PW=1234, would direct to mydomain.com/bob and automatically login. I've never used forms before but it seems like I should be able to grab a "username" variable and a "password" variable from input boxes and then have a "submit" button that goes to http://username:password@mydomain.com/username All without using a database or a server side script. Yes? No? I have never designed a form before, I need help with how to get whatever the user submits to display. I want the text that is typed in the "comment box" to be sent to the current page. In other words I want it to work like ebay or amazon where other people can read feedback and comments from others. This is the code I have so far. <html> <body> <form> First Name: <input type ="text" name="firstname"/> <br/> Last Name: <input type ="text" name="lastname"/> <br/> <br/> Comments orSuggestions: <br/> <textarea rows="10" cols="50"> </textarea> </form> </body> </html> I've designed a web page using WebEasy and I'm going to have to insert the meta tags manually. I've figured out where the code has to go and I know the code has to be something like this: <meta name="keywords" content="keyword, keyword, keyword"> Anyway, my question is what if the keywords don't all fit on one line? Do I let it wrap around like this: <meta name="keywords" content="keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword, keyword"> Or do I start a new line, like this: <meta name="keywords" content="keyword, keyword, keyword"> <meta name="keywords" content="keyword, keyword, keyword"> Thanks Oh, and if I change the meta tags do I have to resubmit my site to google? Thanks hey all, Thanks for looking at my issue, what i am trying to do is as follows! On my page http://cre8tivepixels.com/Quote%20form.html I have a quote form up the top, that works fine, i then added a section where models could send me three photos, when you click on these tabs it loads the photo up, but all i get is an email with the photo names but NO photos? What do i have to put in my script to make it so i recieve there jpegs, and not just the name of the file? Can this even be achieved? Basically i want the photos that a model submits to be delivered in my email address the same as my Quote Form above? Hope that makes sence? Cheers Dan I have created a drop down selection list using PHP that will allow users to create the elements of the selection list and organize them them under user defined catagories, by typing the names of the catagory and entry into fields and clicking a button to add them to the list. By clicking on the entries on the list the user will be able to cause user defined actions to be performed. Just as an example, the user could create the following drop down selection list: Car manufacturers Ford Mercedes Honda Motorcycle manufacturers Harley Davidson Suzuki Honda The problem comes when I try to allow the user to delete an entry by clicking on it and then clicking a delete button.] As you can see from the example above, the word "Honda" appears under two optgroup catagories. If the user clicks on the second one, there is currently no way for the PHP script to distinguish which "Honda" entry they mean. In fact the script would go through the list and delete the fist one it comes across, which is the wrong one. How can I send the value of the optgroup that an entry is listed under along with the entry itself, so that they script can identify which entry the user is clicking on? I tried some tags in the optgroups but they don't seem to get sent to the server. i'm looking for a cheap way out of making collapse/expand code. i've learned a lot of 'ghetto' techniques n thought mayb i can use something similar to the html tricks i've learned in the past. the theory i have is.. i use the title of the collapse/expand text as a link to the text below it to open and close by using the navigating tags: Code: <a name="content">opening/closing text here</a> and the title above the content: Code: <a href="#content">Title</a> to open the area of text. now my idea of a shortcut around the whole css/html/javacript combo is to make the text below it use a Code: <font size=0>content</font> at default and have the href title link change the font size to the default 9pt but I don't know if that's even possible. Is it possible with the Code: <div> tags? and if so, using that, would i still b able to make a link like that? Is it possible to trigger the action of a form with a submit button that's outside the form tags? If so, how should this example be rescripted to make the input tag work outside the form tags? [/code] <html> <body> <form name="input" action="html_form_action.asp" method="get"> First name: <input type="text" name="FirstName" value="Mickey" /><br /> Last name: <input type="text" name="LastName" value="Mouse" /><br /> <input type="submit" value="Submit" /> </form> </body> </html> [/code] I have 3 swf files (buttons that expand vertically when mouse overed) that i want them to overlap a picture. they are all placed in a table as seen in the pic, can this be done? Hi everyone, Sorry to ask questions, I'm sure it gets annoying to have newbies bug you. At this point, I just don't know where to look. I googled this issue and found this site, but the steps didn't do anything for me like it did the original posters problem. I started making a site from dreamweaver, which I did not much enjoy. I left and went back to my usual notepad/IE. I have it online now, and it looks ridiculous on Firefox. I've tried the css reset, which only messed it up even further. I've tried validator, which didn't really do anything but tell me about errors that I don't even understand. I'm getting so frustrated! What on Earth am I doing wrong? http://exit20.com/vguadiana/index.html Hi, if you take a look at the following page: http://www.vub.ac.be/ARCH/reis.php you will see that - in IE - the footer overlaps with the content layer. in FF everything is ok any ideas? thanks I wasn' too sure if I should post this here or not. If not, I'm really sorry. I'm working the home page and here is what I was trying to accomplish. Under the header and the menu, we would have a left section of about ~520px. It would be divided into 2 parts. Top and bottom section. Also, there would be a right column of say 250px The texts of the "content area" (left) and the "right column" are overlapping. I had forgotten a lot of the CSS and can't seem to fix this issue. I probably did some things with css that are not "proper" Anyway, here's a link to the page and to the CSS Link css Thanks in advance. http://completely-gaga.com/ hi i want to make it so that my image fader sits ontop of my header, i've set the positioning of where i want it to be and tried z-index, but it's still not working. any idea what i need to do? heres the test site. http://thefamilydynamic.jsimsc.com/ and what i am trying to accomplish is the drop down menu's at the top to overlap the frame below it (FRAME B) instead of being hid behind it. i tried ALLOWTRANSPARENCY="true" but the menu still drops behind frameb the menu itself IS transparent, so i should be able to see the stuff on frameB when the menu drops down |