Forum: HTML and CSS Jan 21st, 2008 |
| Replies: 2 Views: 6,195 Very bad ;-)
Some browsers may actually listen to you and not bother to expand it, so I would suggest you simply set the size of your input element instead...
<INPUT TYPE="file" NAME="photo"... |
Forum: Site Layout and Usability Nov 21st, 2005 |
| Replies: 3 Views: 2,172 There are loads of server side solutions
http://www.google.co.uk/search?hl=en&q=php+image+gallery&meta=
http://www.google.co.uk/search?hl=en&q=asp+image+gallery&meta= |
Forum: Graphics and Multimedia Nov 15th, 2005 |
| Replies: 3 Views: 7,159 No worries - the embed/src stuff is the worst part of web design if you ask me. |
Forum: JavaScript / DHTML / AJAX Apr 9th, 2005 |
| Replies: 4 Views: 5,831 The problem appears to be that the menu uses javascript to change the cell id onMouseOver and onMouseOut. This means that the background is specified in both. IE clearly thinks it's two different... |
Forum: HTML and CSS Apr 8th, 2005 |
| Replies: 6 Views: 6,307 It appears that for a div, IE in standards mode (with a strict or transitional doctype) adds padding and margins to the width.
In quirks mode, without a doctype or with an incomplete doctype, it... |
Forum: HTML and CSS Apr 4th, 2005 |
| Replies: 17 Views: 4,928 Is this something like what you want?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Page title</title>
<style... |
Forum: HTML and CSS Nov 23rd, 2004 |
| Replies: 11 Views: 5,145 it validates in xhtml 1.0 strict.
Also http://www.htmlhelp.com/reference/html40/tables/tbody.html
It refers to needing 'one or more' tbody elements in a table.
So I guess you can.
edit: see... |
Forum: Viruses, Spyware and other Nasties Nov 2nd, 2004 |
| Replies: 4 Views: 1,663 Firefox is available from: http://www.mozilla.org/products/firefox/
However, if someone breaks in through your front door, you don't just stop using it and use the back door. Similarly, I strongly... |
Forum: Viruses, Spyware and other Nasties Oct 23rd, 2004 |
| Replies: 5 Views: 2,536 you might also want to go to the add/remove programs thing in the control panel and see if it's there. |
Forum: Viruses, Spyware and other Nasties Oct 22nd, 2004 |
| Replies: 42 Views: 38,699 uh... the point is Alc is looking to get spyware so he can analyse the effectiveness of different programs etc...
I'm sure Alc doesn't need any help with his Hijackthis log... |
Forum: Viruses, Spyware and other Nasties Aug 9th, 2004 |
| Replies: 3 Views: 2,022 try installing a few of the other programs listed here: http://www.daniweb.com/techtalkforums/thread5690.html
especially cwshredder, adaware, spybot.
If that fails you might want to read this... |
Forum: HTML and CSS Jul 31st, 2004 |
| Replies: 24 Views: 6,889 <div id="homepage>
<div>
Content
</div>
</div>
#homepage {
margin-left: 100px;
} |
Forum: HTML and CSS Jul 19th, 2004 |
| Replies: 10 Views: 33,561 Yes that's right.
Basically we are moving the control point of the box to the center by telling it to use margins that are negative and half the width and height of the box. This means that when we... |