Search Results

Showing results 1 to 40 of 111
Search took 0.01 seconds.
Search: Posts Made By: Airshow ; Forum: HTML and CSS and child forums
Forum: HTML and CSS 9 Days Ago
Replies: 3
Views: 285
Posted By Airshow
Grungina,

Could be something to do with body's padding:5em 0 0;?

Pleased to see someone using a sprite. Great technique.

Airshow
Forum: HTML and CSS 14 Days Ago
Replies: 2
Views: 353
Posted By Airshow
Checker,

Yes, by using a background image. Something like this for example:

In your 1284 stylesheet:

.hover {
width: 100px;
height: 50px;
background-image:...
Forum: HTML and CSS 19 Days Ago
Replies: 1
Views: 408
Posted By Airshow
Can't see the effect so can't really debug it, however here's a handful of observations:

Header table has attribute align="left" which is equivalent to a float, therefore maincontent div need...
Forum: HTML and CSS 21 Days Ago
Replies: 8
Views: 503
Posted By Airshow
Landroverthing,

Here's a version with a character count. It also includes whitespace to non-breaking space conversion such that the styled version matches the original text even when the user has...
Forum: HTML and CSS 22 Days Ago
Replies: 8
Views: 503
Posted By Airshow
Landroverthing,

Agreed it would better like that, and it's very easy to program.

In TEXTBOX.init, you need to add yet another event handler to call go(). Insert the following immediately above...
Forum: HTML and CSS 22 Days Ago
Replies: 8
Views: 503
Posted By Airshow
Landroverthing,
(I'd like a tidy Series I swb 88 myself but that's another story)

My fault. I wrote that in a hurry and had only tested in IE and not FF, which I expect you are using (or Opera)....
Forum: HTML and CSS 22 Days Ago
Replies: 8
Views: 503
Posted By Airshow
Something like this maybe ...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Airshow ::...
Forum: HTML and CSS 24 Days Ago
Replies: 4
Views: 435
Posted By Airshow
Nomad,

I would do it with <h1> and <h2> tags, thus making the two lines independent of each other. I think you will find that the :first-line approach will superimpose its 3.5em on the 1.8em...
Forum: HTML and CSS 34 Days Ago
Replies: 3
Views: 309
Posted By Airshow
Yes, standard CSS box model (http://www.w3.org/TR/CSS2/box.html#border-style-properties) applies.

Top, bottom, left and right can be individually set but please note that with groove, ridge,...
Forum: HTML and CSS 34 Days Ago
Replies: 3
Views: 309
Posted By Airshow
Here's a demo of the border effects theoretically available from CSS.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
Forum: HTML and CSS Nov 3rd, 2009
Replies: 10
Views: 1,275
Posted By Airshow
Exactly what I said, very concisely, in post #2 - the first reply to this thread. :icon_rolleyes:

Airshow
Forum: HTML and CSS Nov 2nd, 2009
Replies: 3
Views: 432
Posted By Airshow
As far as I can see, freemeto makes its images available only in certain sizes which you select from a menu.

You can force the image to the size you want with :-
<img src="http://......."...
Forum: HTML and CSS Oct 29th, 2009
Replies: 10
Views: 1,275
Posted By Airshow
lbechtum,


Now I'm really confused.

If the first statement is true, then it seems to me that the second statement MUST also be true. What does the second statement say about IE that is not...
Forum: HTML and CSS Oct 29th, 2009
Replies: 10
Views: 1,275
Posted By Airshow
I'm not sure I understand. Are you saying that IE will always give an iframe a white background (regardless of the document displayed in it)? Or are you saying that such advice is incorrect?
...
Forum: HTML and CSS Oct 29th, 2009
Replies: 3
Views: 674
Posted By Airshow
Dat0,

I know that IE6 can handle wmode=transparent. I advised (also on Daniweb) on wmode for this site (http://www.christianvidal.com.ar/galecvq.htm) and the layering certainly works in IE6 (I...
Forum: HTML and CSS Oct 28th, 2009
Replies: 3
Views: 596
Posted By Airshow
Dat0,

I think you will find that css position is inhibited from being applied to table cells because it would at least potentially cause confict/ambiguity with regard to the layout of the rest of...
Forum: HTML and CSS Oct 28th, 2009
Replies: 3
Views: 674
Posted By Airshow
Dat0,

I think you will find that the HTML format is as follows :-
<object .....>
.....
<param name="wmode" value="opaque">
.....
<embed ..... wmode="opaque" .....>
</object>
With regard to...
Forum: HTML and CSS Oct 24th, 2009
Replies: 6
Views: 374
Posted By Airshow
Sid,

But of course, I'm being stupid.

Just use a regular <input type="button" ...> instead, and script it to give a submit action.
<input type="button" name="login" value="Login"...
Forum: HTML and CSS Oct 24th, 2009
Replies: 6
Views: 374
Posted By Airshow
Sid,

In that case I don't think you can avoid it. At least not in IE, which renders the effect as something in addition to the normal box-model.

If you set border-width to something large - eg....
Forum: HTML and CSS Oct 24th, 2009
Replies: 2
Views: 331
Posted By Airshow
Bnapack,

Home page has an xml declaration at the top - the other pages don't.

Try getting rid of it.

Airshow
Forum: HTML and CSS Oct 24th, 2009
Replies: 2
Views: 333
Posted By Airshow
Dat0,

Block elements restyled as inline render unreliably. It's best not to do it.

Where possible use an inline elemt in the first place - notably <span>.

Unfortunately, if the (X)HTML/XML...
Forum: HTML and CSS Oct 24th, 2009
Replies: 6
Views: 374
Posted By Airshow
Sid,

The effect you describe is designed to indicate which button's action will be triggered if the user hits enter when a form element has focus.

Personally I think this is a good idea as it...
Forum: HTML and CSS Oct 10th, 2009
Replies: 11
Solved: Table border
Views: 652
Posted By Airshow
I'm sure you're right URO. I tested quickly in IE6 which is not the most representative of browsers (to put it politely).

Airshow
Forum: HTML and CSS Oct 10th, 2009
Replies: 11
Solved: Table border
Views: 652
Posted By Airshow
There's a problem with using "rules" to control a table's appearance - namely that the HTML specification doesn't specify what the appearance should be and each browser renders differently.
...
Forum: HTML and CSS Oct 9th, 2009
Replies: 1
Views: 295
Posted By Airshow
Cavpollo,

You can't convert HTML to CSS. They are different things. CSS is concerned with presentation while HTML "describes" content (and historically allows a certain degree of control over...
Forum: HTML and CSS Oct 7th, 2009
Replies: 11
Solved: Table border
Views: 652
Posted By Airshow
Ytregnn,

"take away"?

Best way is to serve the table without the row you don't want.

Airshow
Forum: HTML and CSS Oct 5th, 2009
Replies: 11
Views: 449
Posted By Airshow
OK, just making sure.
Forum: HTML and CSS Oct 5th, 2009
Replies: 11
Views: 449
Posted By Airshow
Stymied,

Are you aware that with style="....", you are using CSS?

If you need to avoid CSS completely (I'm not so sure whether you need to or not) then you would need to avoid inline style...
Forum: HTML and CSS Sep 29th, 2009
Replies: 4
Views: 417
Posted By Airshow
You should never need to rely on the order in which form data appears in the POST/GET.

Server-side, you should (CGI?) be able to loop through with an incrementing counter (1 to 130), by which you...
Forum: HTML and CSS Sep 21st, 2009
Replies: 5
Views: 614
Posted By Airshow
Jeffherron,

I'm not sure how to cure your space problem but something you should be aware of is the your page has two forms, one nested inside the other. HTML forms should not be nested as the...
Forum: HTML and CSS Sep 1st, 2009
Replies: 3
Views: 406
Posted By Airshow
I think you will find this is universal - ie. occurs in all browsers.

But it's hardly a limitation. Simply ensure all your css files have the .css extension.

Airshow
Forum: HTML and CSS Sep 1st, 2009
Replies: 10
Views: 1,275
Posted By Airshow
freggel2,

You need to style the document(s) that appear in the iframe with a black background, rather than the iframe itself.

Airshow
Forum: HTML and CSS Aug 31st, 2009
Replies: 3
Views: 432
Posted By Airshow
JerieLsky,

I think this is the same problem as the one reported here (http://www.daniweb.com/forums/thread206595.html).

After a bit of research I found a completly "unguessable" solution ....
...
Forum: HTML and CSS Aug 22nd, 2009
Replies: 7
Views: 539
Posted By Airshow
php_noob,

I understand (maybe incorrectly) that you want two independently styled Unordered Lists on the same page - one list has id="title-nav" and the other id="sys-nav". If so, then this is the...
Forum: HTML and CSS Aug 22nd, 2009
Replies: 5
Views: 551
Posted By Airshow
ICU,

Re trees, I agree, you have spotted the pitfalls of doing it the simple way. There may be other ways - involving a mix of HTML and CSS.

If you want to see some good, creative use of CSS,...
Forum: HTML and CSS Aug 21st, 2009
Replies: 5
Views: 551
Posted By Airshow
Intensive Care Unit (ICU),

Suggest you create your clouds as a flash movie, with a "stop" button for folks with low powered processors/graphics cards - thus they will stand a chance of seeing...
Forum: HTML and CSS Aug 20th, 2009
Replies: 2
Views: 811
Posted By Airshow
The problem is that body and html are not completely independent. I just ran some tests (in IE6) and found that background-color is independent but background-image and background-repeat are not.
...
Forum: HTML and CSS Aug 20th, 2009
Replies: 7
Views: 539
Posted By Airshow
php_noob,

You could start by posting your HTML/CSS.

Airshow
Forum: HTML and CSS Aug 19th, 2009
Replies: 12
Views: 717
Posted By Airshow
Harry,

I just found time to do some testing.

FF 3.0.13: OK
Opera 9.01 : OK
IE6 : No go - div:hover not supported.

If you want to include IE6, I think you will need to use an <a> tag as...
Forum: HTML and CSS Aug 18th, 2009
Replies: 12
Views: 717
Posted By Airshow
Harry,

So it works on a raw div!!!

Airshow
Showing results 1 to 40 of 111

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC