Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 4
1
2
3
>
Last
»
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
DHTML Unwanted Scrolling FF5, IE (all), Chrome, Safari
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
Image Problem - IE.
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
Adding hyperlinks to a slideshow
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
Make footer stick to bottom of window
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
to retrieve the contents of the columns of a <table>?
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
Prevent Text Wrapping
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
Message Box Login?
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
Simple Splash page
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
difference between IE and firefox?
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
Search engine redirects to link page ! Help !
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
Switch works in IE not Firefox
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
IE and FF OK, chrome not
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
CSS Rule help
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
View Page Source of Created Window
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
Resolved
Hangman letter glitch <solved>
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
Allowing access to html page only once you've accepted agreement
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
Different Link Styles
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
Problem with IE 6 in body onload function
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
Resolved
Positioning Image
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
use a different css for input submit
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
submit button picks up wrong url!
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
Bottom center images in div
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
Javascript Games, Baby!
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
How to display png images properly in ie6 please
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
Don't know name of feature wanted
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
Page 1 of 4
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
09:53 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.