Forum: HTML and CSS Aug 9th, 2005 |
| Replies: 1 Views: 1,279 You could do it with Javascript. There's open() and close() methods for windows that will do what you want.
The more important question is: Why would you want to use pop-ups? They're almost ... |
Forum: Python Aug 8th, 2005 |
| Replies: 3 Views: 2,331 Perhaps you could enlighten us with the error message you're getting?
Then again, you could convince your friends to install python. It's not like it'll kill their computer or anything... |
Forum: HTML and CSS Aug 8th, 2005 |
| Replies: 5 Views: 5,985 >regardless of page length or window size.
While a background image will work regardlesss of page length, I'd have to disagree about window size. My columns are relative width (and I'd like to... |
Forum: HTML and CSS Aug 8th, 2005 |
| Replies: 5 Views: 5,985 I figured out how to do this. The best way is to us a div, instead of a table. (which really cut down on filesize and makes it render faster anyway :mrgreen: ) the code for the right nav bar is... |
Forum: JavaScript / DHTML / AJAX Aug 5th, 2005 |
| Replies: 4 Views: 21,886 I have to agree with bkendall . It's more important to write for standards than for a specific browser. Sometimes you may want to look at your design and see if you can change it so that there's less... |
Forum: HTML and CSS Aug 5th, 2005 |
| Replies: 5 Views: 5,985 Apologies. A testing version of the page I'm working on can be found at http://www.prism.gatech.edu/~gtg216r/oagt.html If you'll notice the nav bars to the left and the right (in old gold) they... |
Forum: Python Aug 5th, 2005 |
| Replies: 12 Views: 4,765 Not to mention that python is really easy to read. Although the lack of braces and forced indentation may seem weird to C/Java types (like I was before i ran into python) it makes it MUCH easier to... |
Forum: HTML and CSS Aug 5th, 2005 |
| Replies: 2 Views: 2,512 To agree with peter, CSS is usually the way to go.
Of course, since you're using php, you could always use a backslash in front of your double quotes (like so: \") so that PHP will recognize it... |
Forum: HTML and CSS Aug 5th, 2005 |
| Replies: 13 Views: 3,283 I validate whenever I remember to. It's usually not a problem, as the worst I do is forget a closing tag or some such. And compliance means that browser compatability is usually a cinch.
Not to... |
Forum: HTML and CSS Aug 5th, 2005 |
| Replies: 5 Views: 5,985 So, I'm making a page with navigation bars on the left and the right, and I want them to extend to the bottom of the page regardless of the length of the content of either the nav bar, or the page... |