Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 82
Search took 0.20 seconds.
Search: Posts Made By: harrierdh
Forum: JavaScript programming 07-26-2011, 01:06 PM
Replies: 0
Views: 466
Posted By harrierdh
DHTML Unwanted Scrolling FF5, IE (all), Chrome, Safari

Scroll down to the bottom. Click on an "X" button to bring up a DHTML popup. Select an item. When the DHTML closes and the original HTML is updated the browser scrolls to top. Is there a way to stop...
Forum: HTML & CSS 03-17-2010, 07:13 PM
Replies: 4
Views: 674
Posted By harrierdh
What are you using to create this image. When I...

What are you using to create this image. When I bring it up in Paint Shop Pro I get this error.

The colorspace of this file is unknown.
Forum: JavaScript programming 03-17-2010, 06:42 PM
Replies: 3
Views: 1,547
Posted By harrierdh
This ...

This

document.getElementById("view_portfolio").src = gallery_url[thisUrl]+'<img src="'+thisImage+'"></a>';

Should be this:

document.getElementById("view_portfolio").innerHTML =...
Forum: HTML & CSS 03-10-2010, 07:47 PM
Replies: 3
Views: 4,872
Posted By harrierdh
http://ryanfait.com/sticky-footer/

http://ryanfait.com/sticky-footer/
Forum: JavaScript programming 03-04-2010, 05:18 PM
Replies: 6
Views: 653
Posted By harrierdh
There are many ways to do this. Can you post your...

There are many ways to do this. Can you post your HTML? And what would you do with the data once you had it. Look up document.getElementsByTagName("TD");
Forum: HTML & CSS 02-26-2010, 05:45 PM
Replies: 6
Views: 1,551
Posted By harrierdh
You could make your tree container a fixed width....

You could make your tree container a fixed width.

<div id="tree_container" style="width: 200px;">
Forum: JavaScript programming 02-26-2010, 05:32 PM
Replies: 5
Views: 1,205
Posted By harrierdh
You can make a pop using the window.open...

You can make a pop using the window.open javascript function. Example:

var my_window= window.open ("","mywindow1","status=1,width=450,height=350");

But the way jmrker was talking about would...
Forum: HTML & CSS 02-25-2010, 10:33 PM
Replies: 3
Views: 2,052
Posted By harrierdh
* { padding: 0; margin: 0; } body { ...

* {
padding: 0;
margin: 0;
}
body {
text-align: center;
}
#container {
margin: auto;
width: 880px; // or whatever size you image is
Forum: HTML & CSS 02-25-2010, 10:17 PM
Replies: 2
Views: 748
Posted By harrierdh
Your a couple pixels off in your math. ...

Your a couple pixels off in your math.

Change this:


* html .glossymenu li a{ /*IE only. Actual menu width minus left padding of A element (10px) */
width: 272px;
}
Forum: JavaScript programming 02-19-2010, 08:49 PM
Replies: 11
Views: 1,396
Posted By harrierdh
Post your html too so someone could actually test...

Post your html too so someone could actually test this. And put your code in tags. Use the # pound sign in the icons above. It is very hard to read and I hope the real code is indented.
Forum: JavaScript programming 02-18-2010, 10:46 PM
Replies: 8
Views: 1,176
Posted By harrierdh
This doesn't make any sense. You are not defining...

This doesn't make any sense. You are not defining cFieldOnFocus.

function DisplaySelectedColor(cColor) {
var elToFill = document.getElementById(cFieldOnFocus)
elToFill.value = cColor;

Did...
Forum: HTML & CSS 02-18-2010, 08:14 PM
Replies: 8
Views: 1,503
Posted By harrierdh
You need to specify where it should go. You are...

You need to specify where it should go. You are getting random behavior. Specify top: 0px.

<img alt="" src="../img/licenses/cc_by_sa.jpg" style="position: absolute; left: 0px; top: 0px;...
Forum: HTML & CSS 02-17-2010, 06:46 PM
Replies: 3
Views: 786
Posted By harrierdh
<head> <title> My Style sheet Test</title> ...

<head>
<title> My Style sheet Test</title>

<style type= "text/css">
p {font-size: 150%; color: blue;}
</style>

</head>
<body>
Text style with CSS
Forum: JavaScript programming 02-11-2010, 10:27 PM
Replies: 2
Views: 600
Posted By harrierdh
If you have firebug you can right click on the...

If you have firebug you can right click on the new form and click inspect element. It will show you the dhtml.
Forum: JavaScript programming 02-11-2010, 10:24 PM
Replies: 7
Views: 1,363
Posted By harrierdh
Adding a counter might work or a variation on it....

Adding a counter might work or a variation on it.


<script>
var count = 0; //global var
function checkWord() {
if ((randomword.indexOf(guess1) == 0) && (count = 0))
{...
Forum: HTML & CSS 02-10-2010, 10:54 PM
Replies: 2
Views: 870
Posted By harrierdh
You could set a cookie. Then when main.html opens...

You could set a cookie. Then when main.html opens it could check to see if they have visited before and kick them out. It's not full proof. Users can turn cookies off.

You might be able to use...
Forum: HTML & CSS 02-10-2010, 10:43 PM
Replies: 13
Views: 1,026
Posted By harrierdh
You would do this with a class attribute in the...

You would do this with a class attribute in the <ul tag. Something like this. (Untested)

<style>
.header li {
color: #ffffff;
}
.footer li {
color: #f3f3f3;
}...
Forum: HTML & CSS 02-10-2010, 08:11 PM
Replies: 1
Views: 837
Posted By harrierdh
Try doing this. In a global section of your...

Try doing this. In a global section of your javascript (outside all functions):

<script>
window.onload = initfunc;
function initfunc() {
...
Forum: HTML & CSS 02-09-2010, 11:20 PM
Replies: 2
Views: 536
Posted By harrierdh
Kscriptz, It is a very bad idea to use margins...

Kscriptz,
It is a very bad idea to use margins for positioning. I'm not a big fan of using position absolute, but it is a valid technique. Putting margin: auto on an absolutely positioned item will...
Forum: HTML & CSS 02-09-2010, 09:43 PM
Replies: 2
Views: 798
Posted By harrierdh
I didn't try it but text-align: center; ...

I didn't try it but text-align: center;

http://www.designmeltdown.com/archive.aspx should work. For some in depth form examples look here under Problems and Solutions.
Forum: HTML & CSS 02-05-2010, 08:24 PM
Replies: 3
Views: 1,576
Posted By harrierdh
You are confusing the browser. You have an...

You are confusing the browser. You have an onSumbit event in the <form tag and then you have multiple buttons with type="submit". Remove the onSumbit in the form tag and put it in a button...
Forum: HTML & CSS 02-05-2010, 08:20 PM
Replies: 11
Views: 1,112
Posted By harrierdh
<style> * { margin: 0; } html, body { ...

<style>
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
Forum: JavaScript programming 02-05-2010, 03:10 PM
Replies: 5
Views: 933
Posted By harrierdh
Here is a couple homebrew games. Duckhunt ...

Here is a couple homebrew games.

Duckhunt
http://home.comcast.net/~harrierdh/David/shooter.html

Space Invaders
http://home.comcast.net/~harrierdh/David/html/spcinv.html

Star Wars Puzzle...
Forum: HTML & CSS 02-04-2010, 10:32 PM
Replies: 2
Views: 1,072
Posted By harrierdh
I've used this one with success. ...

I've used this one with success.

http://www.twinhelix.com/css/iepngfix/
Forum: JavaScript programming 02-04-2010, 04:01 PM
Replies: 3
Views: 669
Posted By harrierdh
I believe this is being done with mootools. Take...

I believe this is being done with mootools. Take a look here and look for mootools in your fav search engine.

http://www.e2interactive.com/e2_photo_gallery/demo/
Showing results 1 to 25 of 82

 
Forum Jump

All times are GMT +1. The time now is 09:53 AM.