|
css input middle by
| | Now |
css input middle by
JavaScript is not Java. You cannot use the terms interchangeably. It is difficult to take people seriously as Web developers when they call JavaScript Java.
Additionally, what you posted as "Java" is not JavaScript. It's HTML, and it's non-W3C compliant HTML at that. If you want to be taken seriously as a Web developer, you need to make cleaner code. You may have found this code on the Web; if so, stop getting code from there, it's crap.
You can leverage the Google Languages API yourself, without the need for this form, by visiting the API's documentation page:
http://code.google.com/apis/ajaxlanguage...
Finally, you should never use reserved words, such as JavaScript, as an ID attribute for an HTML element.
You are unclear on the nature of where you want this form positioned. I'll assume you want the form to take an absolute position from the top and left margins of the page.
Generally speaking, absolute positioning of an HTML element via CSS is straightforward. First, wrap the element to be positioned in a div with a unique id, as you attempted to do:
<div id="fixmyspot">
<!-- code to be positioned goes here -->
</div>
Next, add this declaration to your stylesheet:
#fixmyspot {
position: absolute;
top: 100px;
left: 100px;
}
This will fix the position of the items in the div 100 pixels from the top of the page, and 100 pixels from the left border. Adjust the values as necessary. |
| June 26, 2009 | 12:28 pm | Report abuse | Reply |
css input middle by
I have a search box written in Java Script and I need to position this in CSS. The problem is I got it from a site and I need to position it. I tried putting it in a div <div id="JavaScript"> but it still put it in the middle of my page. I tried aligning it left but it wouldn't link to the CSS. Script as follows below:
Java:
<P></P>
<P></P>
<P align=center><FONT color=#f20de9 size=3>Have a need to translate your pages to Spanish, French, Portuguese, German or Italian?</FONT></P>
<P align=center> </P>
<P align=center> </P>
<P align=center>
<form name=goour action="http://translate.google.com/tran... target="_blank">
<input type="hidden" name="u" value="http://www.sweetysplace.com" target="_blank">
<select name=langpair>
<option value="en|es">to Spanish
<option value="en|fr">to French
<option value="en|de">to German
<option value="en|it">to Italian
<option value="en|pt">to Portuguese
</select>
<input TYPE=hidden name=hl value=en>
<input TYPE=hidden name=ie value=ISO-8859-1>
<input TYPE=hidden name=oe value=ISO-8859-1>
<input type=hidden name=prev value="/language_tools">
<br>
<input type="submit" value="Translate Now">
</form></P>
HTML:
<DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml/DTD/xhtml1...
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Guitar Central - a place for all guitar lovers</title>
<meta http-equiv="Content-Type"
content="text-html; charset=utf-8" />
<link href="guitarstyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<div id="sitebranding">
<h1>Guitar Central</h1>
</body>
<div id="tagline">
<p>This site is devoted to all people who love, play, or just like guitars</p>
</div>
</div> <!-- end of header div -->
<div id="navigation">
<ul>
<li><a href="guitarindex.html">Home</a></li>
<li><a href="guitarabout.html">About</a></li>
<li><a href="guitar gallery">Guitar Gallery</a></li>
<li><a href="Gibson">Gibson page</a></li>
<li><a href="Ibanez">Ibanez Page</a></li>
<li><a href="Song of the month</a></li>
<li><a href="Tab of the month</a></li>
</div> |
| June 26, 2009 | 5:47 am | Report abuse | Reply |
|
|
check this link it might help it has ready made css menu tabs
www.slogbox.com
recommend
Here's a website with a tutorial...
www.slogbox.com
recommend
There are three books that I consider essential if you want to learn good, standa www.slogbox.com
recommend
|
 |
Ver resultados en otros idiomas |
 |
| |
|
|
 |
|
 |
|
|
|
Wait
Add your comment
Thank you for helping us improve the quality of this site.
|