Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 29
Search took 0.07 seconds.
Search: Posts Made By: acroporas
Forum: HTML & CSS 12-12-2007, 02:13 PM
Replies: 4
Views: 811
Posted By acroporas
It does seem to be a collapsing margin issue. ...

It does seem to be a collapsing margin issue.

Changing #container to:
padding: 1px;
margin: -2px;
width: 100%;

fixed the problem. The key was the width, with out width declaration it...
Forum: HTML & CSS 12-12-2007, 01:42 AM
Replies: 4
Views: 811
Posted By acroporas
I removed the xml. Still no go.....

I removed the xml. Still no go.....
Forum: HTML & CSS 12-12-2007, 12:15 AM
Replies: 4
Views: 811
Posted By acroporas
Nested ID's

Why does the following not work in IE (it works fine in firefox)



#container{
margin: 0;
padding 0;
}

#content{
Forum: JavaScript programming 10-05-2007, 05:01 AM
Replies: 2
Views: 779
Posted By acroporas
Help validating radio buttons.

Ok, I have a form with a bunch (a few hundred) of sets of radio buttons.

I want to check that all sets have a value.(the user chose an option for all sets)

I could check them one at a time. ...
Forum: JavaScript programming 09-24-2007, 02:46 AM
Replies: 1
Views: 1,761
Posted By acroporas
Javascript Dropdown menu with text input.

I'm working on a dropdown menu where one of the items in the dropdown menu has a text input form element.

It seems to work fine for me with both IE7 and firefox.

But a friend of mine says that...
Forum: General web building 07-22-2007, 04:38 PM
Replies: 9
Views: 1,251
Posted By acroporas
Photoshop is not the best program for doing this...

Photoshop is not the best program for doing this but it is possible.

Open a new image with a transparent background the same dimentions as your scan.
Copy the scan and paste it into the new...
Forum: General web building 07-22-2007, 01:59 AM
Replies: 0
Views: 854
Posted By acroporas
htaccess RedirectMatch

I'm sure that there's a way to do this in one line, but I can not figure it out.

This does not work.

RedirectMatch 301 /Galleries/.*May04.* http://www.photography.willandsam.com/?Gallery=1

...
Forum: Ajax and Design 07-07-2007, 10:47 PM
Replies: 1
Views: 4,462
Posted By acroporas
Help getting data out of responseXML

I want my javascript to recieve an xml page containing two bits html code to insert into various places in the page.

example xml page

<?xml version="1.0" ?>
<root>
<image><img...
Forum: JavaScript programming 06-30-2007, 04:24 AM
Replies: 6
Views: 922
Posted By acroporas
Yes, you can only have one instance of an ID on a...

Yes, you can only have one instance of an ID on a page. You should use a class when there are multiple objects you want to give the same lable.

Change id="myID" to class="myID"

then to count...
Forum: JavaScript programming 06-30-2007, 04:05 AM
Replies: 6
Views: 1,504
Posted By acroporas
Ok I have it working now but I do not really...

Ok I have it working now but I do not really understand why the changes I needed were necessicary.

Changing query.match to query.match().toString() fixes the problem. Aparently query.match does...
Forum: JavaScript programming 06-30-2007, 03:15 AM
Replies: 6
Views: 1,504
Posted By acroporas
I did test. If I add the following line right...

I did test. If I add the following line right before the line that causes the error.
document.write(image, "<br>", gallery);
I get:

image=23
gallery=10

Here is the test page....
Forum: JavaScript programming 06-30-2007, 01:49 AM
Replies: 3
Views: 723
Posted By acroporas
or you can do var reg = /\d+\s-\s\w+\s=\s\w+/;

or you can do var reg = /\d+\s-\s\w+\s=\s\w+/;
Forum: JavaScript programming 06-30-2007, 12:37 AM
Replies: 6
Views: 1,504
Posted By acroporas
Error: .match is not a function

Can anyone tell me why I am getting the following error message and how to fix it:

image.match is not a function
regImage = /[Ii]mage=\d*/;
regGallery = /[Gg]allery=\d*/;
regdigits = /\d*/;...
Forum: JavaScript programming 06-26-2007, 06:58 AM
Replies: 6
Views: 5,432
Posted By acroporas
So far it seems to be working. I've refeshed the...

So far it seems to be working. I've refeshed the page a few dosen times and every time, all the pictures end up load.
Forum: JavaScript programming 06-26-2007, 02:58 AM
Replies: 6
Views: 5,432
Posted By acroporas
Here's the page I'm working on....

Here's the page I'm working on. http://www.photography.willandsam.com/?Gallery=10

Basically there are a bunch of images (~150 on the page in the link). Far too often, not all of the images end up...
Forum: JavaScript programming 06-25-2007, 11:10 PM
Replies: 6
Views: 5,432
Posted By acroporas
Ok, I've been able to detect when I picture did...

Ok, I've been able to detect when I picture did not load. But now what, how can I instruct the browser to try again?
Forum: JavaScript programming 06-25-2007, 06:32 PM
Replies: 6
Views: 5,432
Posted By acroporas
How to detect if background image is loaded sucessfully?

Is there any way to detect if a background image was loaded sucessfully and then instruct the browser to try that image again if it was not?

Thanks
Forum: JavaScript programming 06-21-2007, 05:11 AM
Replies: 4
Views: 601
Posted By acroporas
Yes, when I past that in it worked. Thanks.

Yes, when I past that in it worked.

Thanks.
Forum: JavaScript programming 06-21-2007, 04:59 AM
Replies: 4
Views: 601
Posted By acroporas
Thanks for looking at it. I changed the <=...

Thanks for looking at it.

I changed the <= to < and had it run on load, but it still does not make it to the inner alert.
Forum: JavaScript programming 06-21-2007, 03:46 AM
Replies: 4
Views: 601
Posted By acroporas
Simple code that doesnt work. Please help...

Sorry for the non-descriptive title, but I'm very new to javascript and I have no idea where the problem(s) are to ask a more descriptive question.

Can someone tell me what I am doing wrong.
...
Forum: HTML & CSS 06-15-2007, 11:48 PM
Replies: 2
Views: 587
Posted By acroporas
The page looks the same to me in both firefox and...

The page looks the same to me in both firefox and IE.
Forum: HTML & CSS 06-15-2007, 11:31 PM
Replies: 3
Views: 812
Posted By acroporas
See if this helps. <h4 style="margin:0;...

See if this helps.

<h4 style="margin:0; padding:0;">Headding</h4>
Forum: HTML & CSS 04-22-2007, 10:40 PM
Replies: 5
Views: 1,030
Posted By acroporas
Thanks Excavator. The behavior of the thumbnails...

Thanks Excavator. The behavior of the thumbnails in your thumbnail presentation was exactly the behavior I was looking for.

Looks like I can make it work if I make my div's in to span's.
Forum: HTML & CSS 04-22-2007, 03:04 AM
Replies: 5
Views: 1,030
Posted By acroporas
I haven't tryed your code yet, but I don't think...

I haven't tryed your code yet, but I don't think that works.
That will not allow the number of columns to grow as the page is stretched.
Forum: HTML & CSS 04-22-2007, 02:18 AM
Replies: 5
Views: 1,030
Posted By acroporas
Centering floating div's.

The basic structure of my page is this:


<div id="center_me">

<div style="float: left;">...</div>
<div style="float: left;">...</div>
<div style="float: left;">...</div>
.......
<div...
Showing results 1 to 25 of 29

 
Forum Jump

All times are GMT +1. The time now is 01:29 AM.