Forum: Website Reviews Dec 19th, 2006 |
| Replies: 9 Views: 1,836 |
Forum: Website Reviews Dec 19th, 2006 |
| Replies: 9 Views: 1,836 Re: Howz My Web Site, The line:
<h1> <span class="style34">offer a full range of web design solutions in india, as well as individuals. Our team of professionals with proven experience in the field of web... |
Forum: HTML and CSS Dec 6th, 2006 |
| Replies: 1 Views: 775 Re: image map I think you're looking for something like:
<area shape="default" href="???"> |
Forum: Website Reviews Dec 5th, 2006 |
| Replies: 9 Views: 1,836 Re: Howz My Web Site, Much nicer! Only one left:
HTML Validation Result
----------------------
http://www.cre8ivemind.com/
line 100 column 350 - Warning: unescaped & which should be written as &
0 errors / 1... |
Forum: Website Reviews Dec 5th, 2006 |
| Replies: 10 Views: 1,370 |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 10 Views: 1,370 IE7 check please Could someone with IE7 have a look and tell me what does or doesn't work?
http://spruce.flint.umich.edu/~jalarie/ |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 1 Views: 884 Re: Please Review my Site The first step to improvement is to validate the code. Tidy reports:
HTML Validation Result
----------------------
http://www.guruwebllc.com/
line 15 column 1 - Warning: <meta> element not empty or... |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 9 Views: 1,836 Re: Howz My Web Site, I would have to think twice about having a web site designed by a company whose own site has problems:
HTML Validation Result
----------------------
http://www.cre8ivemind.com/
line 81 column 11 -... |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 1 Views: 1,237 Re: Please review my site LocalHelp411.com Nice look! I'm searching for a job there.
Tidy says:
HTML Validation Result
----------------------
http://www.localhelp411.com/
line 6 column 39 - Warning: unescaped & which should be written as... |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 1 Views: 961 Re: Please review Alchemy Tidy says you need to work on it a bit:
HTML Validation Result
----------------------
http://www.alchemy-education.com/
line 93 column 7 - Warning: missing <tr>
line 93 column 7 - Warning:... |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 1 Views: 973 Re: Just launched a Flash product's website I'm not all that crazy about light-on-dark, but it seems to work.
Tidy says:
HTML Validation Result
----------------------
http://www.flashmybrain.com/
line 169 column 119 - Warning: discarding... |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 1 Views: 1,351 Re: Brand new website looking for a review. You have some beautiful pictures.
Tidy reports:
HTML Validation Result
----------------------
http://www.raw-stock-images.co.uk/
line 27 column 1 - Warning: <input> ID "__EVENTTARGET" uses XML ID... |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 1 Views: 1,441 |
Forum: Website Reviews Nov 30th, 2006 |
| Replies: 1 Views: 1,204 Re: My votedtop website chart is a pr4 now! Decent layout; seems to work.
Tidy reports a few items:
HTML Validation Result
----------------------
http://www.votedtop.com/
line 3 column 1 - Warning: <!DOCTYPE> escaping malformed URI... |
Forum: JavaScript / DHTML / AJAX Nov 29th, 2006 |
| Replies: 2 Views: 1,273 |
Forum: HTML and CSS Sep 26th, 2006 |
| Replies: 13 Views: 1,858 Re: CSS # or . The pound sign (#) denotes a reference to an id, and the period (.) refers to a class:
#footer { background-color: lime; }
.indent { margin: 0px 20px 0px 20px; }
<div id="footer">...</div>
<div... |
Forum: HTML and CSS Sep 12th, 2006 |
| Replies: 2 Views: 2,638 Re: Drop Down Form JS Help Perhaps this will give you a place to start. Notice the "States" array beginning about line 20; each major group (country, in this case) has an equals (=) sign followed by the code for that group. ... |
Forum: HTML and CSS Aug 24th, 2006 |
| Replies: 1 Views: 793 CSS, Netscape 4, @media screen, display none As far as I can see, the following should work even on Netscape 4, but it doesn't. Can anyone tell me what I'm doing wrong?
<style>
@media screen {
.NotOnScreen { display: none; }
... |
Forum: JavaScript / DHTML / AJAX Jul 20th, 2006 |
| Replies: 3 Views: 3,879 Re: JavaScript execution delay The name "password" might be a reserved word, so I changed it to "pword" to avoid trouble:
<script type="text/javascript">
function Password() {
var password = ''
pword=prompt('Please... |
Forum: JavaScript / DHTML / AJAX Jul 20th, 2006 |
| Replies: 3 Views: 3,879 Re: JavaScript execution delay Put your script within a function and then use "setTimeout" to run the function:
TimeOut1=setTimeout("YourFunction()",4000); |
Forum: HTML and CSS Jun 13th, 2006 |
| Replies: 4 Views: 976 |
Forum: HTML and CSS Jun 12th, 2006 |
| Replies: 4 Views: 976 |
Forum: HTML and CSS Jun 12th, 2006 |
| Replies: 2 Views: 2,245 Re: "History -1" In Javascript, you use "history.go(-1)" to go back one page. I haven't seen the "History -1" that you requested. |
Forum: HTML and CSS Apr 25th, 2006 |
| Replies: 12 Views: 2,251 Re: Page Last Updated Please be aware that the "getDay" function always returns 0-6, but sometimes means Sunday-Saturday and sometimes means Monday-Sunday depending on how you have localized your machine. |
Forum: JavaScript / DHTML / AJAX Apr 25th, 2006 |
| Replies: 2 Views: 993 Re: Javascript Help Make sure that both textboxes have "name" (for older browsers) and "id" attributes.
Add the following to the first textbox:
onfocus="document.forms[0].second_box_name.value='SHOUVIK';" |
Forum: HTML and CSS Apr 24th, 2006 |
| Replies: 12 Views: 2,251 Re: Page Last Updated Try this:
DLM=new Date(document.lastModified);
DLM_Y=DLM.getYear();
DLM_M=DLM.getMonth(); // Jan-Dec = 0-11
DLM_D=DLM.getDate();
if (DLM_Y < 70) { DLM_Y=DLM_Y*1+2000; }
if (DLM_Y < 1000) {... |
Forum: HTML and CSS Apr 11th, 2006 |
| Replies: 4 Views: 1,419 |
Forum: HTML and CSS Mar 31st, 2006 |
| Replies: 4 Views: 807 |
Forum: HTML and CSS Mar 29th, 2006 |
| Replies: 4 Views: 807 Re: want one more help How about:
<input type="button' value=" short ">
<input type="button' value="lllooonnnggg"> |