Forum: HTML / XHTML / CSS
Nov 8th, 2007, 5:56 PM
|
|
Replies: 6
Views: 360
|
Forum: HTML / XHTML / CSS
Nov 8th, 2007, 5:36 PM
|
|
Replies: 6
Views: 360
Re: Radio Buttons and TR spacing
thank you very much,
:( yes i realise now that it will sit inline even without the table. - meh sadly im using Dreamweaver, it likes to add inline crap like div's to align some text..
to vouch for...
|
Forum: JavaScript and Client-Side Browser Scripting
Nov 8th, 2007, 4:28 PM
|
|
Replies: 4
Views: 729
Re: .style.visibility = 'visible';
sorry couldn't be bothered looking it up, i actually substituted block/none for true/false - the hidden/display is for the class names in the css.
though ill use hidden/visible for this...
|
Forum: HTML / XHTML / CSS
Nov 8th, 2007, 4:14 PM
|
|
Replies: 6
Views: 360
Re: Radio Buttons and TR spacing
The IE 7 and Moz/FF rendering, the height of each row is somewhat expanded and not wrapped like in opera, here is the code.
But note that i use the phpbb template engine so it will be duplicated...
|
Forum: JavaScript and Client-Side Browser Scripting
Nov 8th, 2007, 7:43 AM
|
|
Replies: 4
Views: 729
Re: .style.visibility = 'visible';
function toggle(DivId) {
if (document.getElementById(DivId).className == "visible") {
document.getElementById(DivId).className = "hidden";
} else {
...
|
Forum: HTML / XHTML / CSS
Nov 8th, 2007, 7:33 AM
|
|
Replies: 6
Views: 360
Radio Buttons and TR spacing
Hello programmingforums.org this is my first post, and first problem of the week!
The following links are to images which show my problem,
One for each major browser, and i have enabled borders on...
|