Search Results

Showing results 1 to 40 of 1000
Search took 0.10 seconds.
Search: Posts Made By: MidiMagic
Forum: HTML and CSS 18 Days Ago
Replies: 2
Views: 401
Posted By MidiMagic
IE sometimes gets confused when you name a class or an id using a tag name.
Forum: HTML and CSS 18 Days Ago
Replies: 5
Views: 491
Posted By MidiMagic
Note that some search engines can not search certain sites unless the robots.txt file is present.
Forum: HTML and CSS 18 Days Ago
Replies: 6
Views: 430
Posted By MidiMagic
You are never going to exactly fill a screen with an image. There are too many differences in screen resolution, aspect ratio, and browser configurations among different computers for you to expect...
Forum: HTML and CSS Sep 26th, 2009
Replies: 10
Views: 1,206
Posted By MidiMagic
There is no way to fill the viewport exactly that works on all computers, browsers, window sizes, screen resolutions, and screen aspect ratios. Do not attempt to do this. It is not intended to be...
Forum: HTML and CSS Sep 26th, 2009
Replies: 3
Views: 336
Posted By MidiMagic
This is a homework assignment. Do not give the answer.
Forum: HTML and CSS Sep 26th, 2009
Replies: 8
Views: 444
Posted By MidiMagic
Negative numbers are not part of the W3C definition for margin. Browsers go into quirks mode when they encounter them.

Note that it is NOT necessary to make a separate style sheet for IE. I have...
Forum: HTML and CSS Sep 26th, 2009
Replies: 2
Views: 473
Posted By MidiMagic
First of all, 0px is an invalid style attribute. Some browsers throw out all styles where a unit of measure is attached to a 0 value.

Second, as long as you define all of your sizes in pixels, you...
Forum: HTML and CSS Sep 26th, 2009
Replies: 2
Views: 365
Posted By MidiMagic
The background image url belongs in a style for the body tag.

I am not sure what you mean to make the image transparent. The background is supposed to be on the bottom, so there should be nothing...
Forum: HTML and CSS Sep 26th, 2009
Replies: 12
Views: 1,076
Posted By MidiMagic
The problem is that vertical centering can not be done in a way that works on all computers, browsers, screen resolutions, screen aspect ratios, browser configurations, and current browser window...
Forum: HTML and CSS Sep 26th, 2009
Replies: 2
Views: 322
Posted By MidiMagic
- Alignment is not inherited from div to table. You need to apply the style to the td tags.

- The php script may be overriding the style.

- If there is any syntax error in the style, the entire...
Forum: DaniWeb Community Feedback Aug 23rd, 2009
Replies: 17
Views: 1,398
Posted By MidiMagic
We have too much government. They should not have control of your site.
Forum: Graphics and Multimedia Aug 23rd, 2009
Replies: 4
Views: 2,141
Posted By MidiMagic
You will either have to use .gif instead of .jpg, and set a transparent color, or match the background color in the background of the image.
Forum: HTML and CSS Aug 23rd, 2009
Replies: 6
Views: 944
Posted By MidiMagic
I don't like curved corners either.
Forum: HTML and CSS Aug 23rd, 2009
Replies: 2
Views: 390
Posted By MidiMagic
You have to set your body overflow style to scroll.
Forum: HTML and CSS Aug 23rd, 2009
Replies: 18
Views: 1,257
Posted By MidiMagic
That dotted line indicates that the picture has the focus. That is a windows function. It is supposed to be there.
Forum: HTML and CSS Aug 23rd, 2009
Replies: 5
Views: 440
Posted By MidiMagic
Neither 0 px nor 0px is a valid code.

0 px has a space in it, which makes it two different items.

0px does not work on some browsers, and causes the entire style to be eliminated. Those...
Forum: HTML and CSS Aug 23rd, 2009
Replies: 3
Views: 544
Posted By MidiMagic
If you want the table to be the width of the screen, use:

width: 100%;


Remember that different computers have different screen widths in pixels.
Forum: Web Browsers Aug 23rd, 2009
Replies: 4
Views: 611
Posted By MidiMagic
You might have to tell FF where the port is.

Go into Tools/Options and check the settings.

What kind of connection do you have?
Forum: DaniWeb Community Feedback Aug 12th, 2009
Replies: 2
Views: 499
Posted By MidiMagic
Is that bot-ulism?
Forum: Graphics and Multimedia Aug 12th, 2009
Replies: 2
Views: 495
Posted By MidiMagic
Something is disabled in his browser.

There is a setting on some browsers to print just the text, to save paper.
Forum: Site Layout and Usability Aug 12th, 2009
Replies: 3
Solved: Web site Layout
Views: 528
Posted By MidiMagic
No, they are not. Many people with visual problems use 800X600 to make the text large enough to read.
Forum: HTML and CSS Aug 11th, 2009
Replies: 1
Solved: Browser Problem
Views: 214
Posted By MidiMagic
I don't click on links with IP addresses in them. They can go to malware sites.

Check these:

- Don't put size styles (width, height), and surrounding styles (margin, border, padding) on the...
Forum: HTML and CSS Aug 11th, 2009
Replies: 1
Views: 253
Posted By MidiMagic
No. This would require a script.
Forum: HTML and CSS Aug 11th, 2009
Replies: 3
Views: 622
Posted By MidiMagic
First of all, I wish the hover attribute had never been invented. I hate pages that change when you move the mouse without clicking. They make the page not accessible to the disabled.

Your problem...
Forum: HTML and CSS Aug 11th, 2009
Replies: 2
Views: 353
Posted By MidiMagic
You can't do it that way. You have to make an image with a transparent color in it.

Usually this must be a .gif image. You create the image in an image editor, using a specific color you do not...
Forum: HTML and CSS Aug 11th, 2009
Replies: 8
Views: 641
Posted By MidiMagic
You can't reference an address on your own disk drive and expect that image to work when the page is uploaded. You have done this in your body css.
Forum: HTML and CSS Aug 11th, 2009
Replies: 4
Views: 454
Posted By MidiMagic
The only way I know to compatibly include a font the user does not have installed is to create an image file containing the text in the font you want, and put the image on the website.
Forum: HTML and CSS Aug 11th, 2009
Replies: 4
Views: 515
Posted By MidiMagic
There is a separate w3c frameset doctype if you want frames in xhtml.

Frames are deprecated in the strict xhtml doctype.
Forum: HTML and CSS Aug 11th, 2009
Replies: 3
Views: 684
Posted By MidiMagic
If you are expecting the background color to fill the div around the edge of the square image, you need some padding.

If you expect the background color to fill in around an irregularly shaped...
Forum: HTML and CSS Aug 11th, 2009
Replies: 2
Views: 463
Posted By MidiMagic
Never put size styles (width, height) and surround styles (margin, border, padding) in the same style or on the same web page tag.

Instead, nest two box objects. Put the size styles on one box...
Forum: HTML and CSS Aug 11th, 2009
Replies: 3
Views: 270
Posted By MidiMagic
Is your image larger than the viewport?
Forum: HTML and CSS Aug 11th, 2009
Replies: 3
Views: 329
Posted By MidiMagic
You don't. The user does this.

The user right-clicks on the image, and selects Save Image As from the menu.

It would be a security violation if a web page did this on its own.
Forum: HTML and CSS Aug 3rd, 2009
Replies: 5
Views: 472
Posted By MidiMagic
Just leave the divs transparent. As long as you don't specify a background, they will show the background under them.

Be careful putting images under text. Many people have trouble reading that.
Forum: HTML and CSS Aug 3rd, 2009
Replies: 6
Views: 520
Posted By MidiMagic
Stop the bots, and you are no longer indexed on search engines.
Forum: HTML and CSS Aug 3rd, 2009
Replies: 4
Views: 392
Posted By MidiMagic
He was just struck by lightning. :icon_mrgreen:
Forum: HTML and CSS Aug 3rd, 2009
Replies: 22
Views: 1,664
Posted By MidiMagic
It usually works. But you can not guarantee that it will work every time. When it doesn't work, the user can refresh the page, and hopefully the path will not go though an old routing computer the...
Forum: HTML and CSS Aug 3rd, 2009
Replies: 3
Views: 923
Posted By MidiMagic
0px is not a valid style. Use just 0 for all 0 values. Do not attach a unit of measure. It causes some browsers to throw away the style.
Forum: HTML and CSS Jul 29th, 2009
Replies: 4
Views: 540
Posted By MidiMagic
It could be that the server doesn't know how to use a .pptx file yet. Or it might not know to serve some auxillary file.

Did you use some built in file in the presentation, but forget to upload...
Forum: HTML and CSS Jul 29th, 2009
Replies: 2
Views: 549
Posted By MidiMagic
Don't use pixels to define sizes. This introduces incompatibilities that depend on screen resolution.
Forum: HTML and CSS Jul 29th, 2009
Replies: 6
Views: 520
Posted By MidiMagic
A cracker may be trying to overload the site to exploit vulnerability.
Showing results 1 to 40 of 1000

 


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

©2003 - 2009 DaniWeb® LLC