2,255 Posted Topics

Member Avatar for Scrawn_Dog
Member Avatar for The Dude

I still have my 64K Tandy Color Computer - the first home computer able to run UNIX. And it was totally virus-proof (except when running UNIX). The only reason I don't use it anymore is that I can't get supplies for it. It can't operate any current printers or disk …

Member Avatar for Chaky
0
308
Member Avatar for sborder

You can't do anything to a page to change its Google ranking, except to provide valid meta search strings. As long as the URL is not changed, the Google rank won't be changed by what you do. I discovered that the links to a page have nothing to do witrh …

Member Avatar for MidiMagic
0
129
Member Avatar for rwoody
Member Avatar for gvsmani
Member Avatar for schwarznavy

It is best to not change the colors of these items, sinc most browsers can block your styles on links.

Member Avatar for MidiMagic
0
96
Member Avatar for tom_oxygen

This is the wrong place to post questions about mail. Go up to the top of the page, and select the Tech Talk forum "Microsoft Windows" (Windows Programs). Post your email trouble there.

Member Avatar for MidiMagic
0
175
Member Avatar for Serunson

I prefer WMP over Itunes, becuse it does CD-quality if the file allows. But I prefer CD over either of them, and phonograph records over all of them.

Member Avatar for Serunson
0
836
Member Avatar for dcc
Member Avatar for John_Brown

[quote=Phaelax;339358]I think I'm the only person who prefers to do all my web coding in notepad. Only time I use an editor (frontpage) is for drawing tables. I've used HyperEdit before and it was pretty nice. It's strictly an HTML/CSS editor with a preview window, no drag n' drop interface. …

Member Avatar for GiorgosK
0
232
Member Avatar for djmabeizy

[code] <style> .bgim {background-image: url(myimage.jpg);} </style> .... <div class="bgim"> stuff inside </div> [/code] Use background-repeat to tell the browser whether or not to use repetition, background-position to adjust it. You can use any box object in place of the div.

Member Avatar for Designer_101
0
140
Member Avatar for Pro2000

There are several ways to procede: - The best way is to define a style with the font you want, and a font-family to use if the font isn't there. - Another way is to tell the users where they can download your font. - If the font is to …

Member Avatar for Designer_101
0
105
Member Avatar for The Dude
Member Avatar for fnrayosunshine

The trouble is that there are several versions of different characters in Word. I would suggest you change some settings: - Go into the Word spellchecker and turn off the functions whcih make smart quotes and long hyphens. - Make sure the server, your computer's default, and word's default are …

Member Avatar for MidiMagic
0
105
Member Avatar for Fungus1487

Instead of removing it, why not just hide it. [code] .stealth {visibility: visible;} [/code] Then, at the point where you want something to disappear, change its visibility attribute to: hidden - if it should still take up the space. collapse - if it should disappear from the page format too.

Member Avatar for MidiMagic
0
317
Member Avatar for ashneet

Just write to the form elements in the same way you read form elements, but with the element on the left side of the =.

Member Avatar for MidiMagic
0
61
Member Avatar for The Dude

As long as the glass hasn't separated, super glue works great, at 1/5 the cost.

Member Avatar for lasher511
1
130
Member Avatar for CMCDragonkai

I can't see the style sheet, so I can't help. I'd say you have some styles which are assuming their default values.

Member Avatar for CMCDragonkai
0
71
Member Avatar for havilah

I just made several divs with 1px borders of different colors, and nested them.

Member Avatar for Fungus1487
0
108
Member Avatar for bazmanblue

I'm sick of moving images used to attract attention, and links shaped like big pills. And the corner shading overlaps the text somewhat in Firefox 7.0.0.3.

Member Avatar for MidiMagic
0
172
Member Avatar for moziee

I stuffed your code into the W3C validator, and it spit out the error messages. You have chosen the XHTML 1.0 Strict doctype, but you are using deprecated elements which are not supported by XHTML. Either change your doctype, or change the deprecated elements to the style sheet equivalents. Below …

Member Avatar for MidiMagic
0
95
Member Avatar for ket7880

You need to realize that the user can put settings in his browser that override anything you try to put in for those values. If the user has selected any value other than "let the document decide," his colors will always display instead of yours. For this reason all web …

Member Avatar for MidiMagic
0
150
Member Avatar for Evanzgurl

The problem is not doctypes, but the actual difference in the way IE and Firefox treat box objects. When you define the size of a box object, IE uses that size as the outside edge of the margin. So the margin, border, and padding are all INSIDE that dimension. When …

Member Avatar for MidiMagic
0
58
Member Avatar for Arch_Bytes

Possible causes: - You executed the alert before defining the variable. - The variable is local to a different function - You never gave the variable a value. - You copied the value of another undefined variable. - You spellied the variable wrong somewhere. - You forgot a semicolon, preventing …

Member Avatar for MidiMagic
0
125
Member Avatar for zabador

The dropdown menus are not under the tabs that open them, so they close before you can get the cursor to them.

Member Avatar for hbk619
0
91
Member Avatar for wasakonis

Several questions: - Did you use relative addressing to point to the image? Or is the web page looking for it on your hard disk (where it can't be found by the ISP computer). - Is the image in the same folder on the site, relative to the location of …

Member Avatar for somedude3488
0
145
Member Avatar for dcc

[quote=Aia;389896]>Are you kidding? I've seen tons of people who use welfare, and don't need it. Where I work, I've had to processes orders (people who use government aid such as food stamps, WIC, etc.), and I've taken stuff out to their car.. only to find that they have a brand …

Member Avatar for UrbanKhoja
1
619
Member Avatar for tehgreatmg

Did you save a zero count file to get it started? You can't open the file for read until it exists.

Member Avatar for digital-ether
0
979
Member Avatar for jamello

There is a lot of misinformation about the number of the beast. It is 666. But the beast is not a person. Beasts in Scripture always denote governments. So the beast is a government. The name of the beast is what the number stands for. The beast forces you to …

Member Avatar for jamello
1
482
Member Avatar for MidiMagic

Funny headlines and newspaper misprints I collected: Woman collides with police car. Goliath falls in Cup. Vaccinations available for whopping couch. 17 remain dead in morgue shooting spree. Experienced bricklayer and hog carrier wanted. Specter objects to bill's provision Shooting reported at firing range The Plaintiff does not know the …

Member Avatar for sk8ndestroy14
3
251
Member Avatar for b.bea
Member Avatar for WaltP
1
168
Member Avatar for akash_msrit

Why not create a stylesheet class for each color? . [code] .bred {background-color: red;} .bgrn {background-color: green;} [/code] Then just insert the correct classes when you put the values in the tables, either directly or through a script: [code] <td class="bgrn">met</td> [/code]

Member Avatar for ~s.o.s~
0
100
Member Avatar for bball7210

Where is the semicolon that belongs after each alert statement? You have a run-on statement. The next statement is not executed because the semicolon is missing. The interpreter thinks the statement is not over yet. It then finds it doesn't know what to do with the improper code it finds, …

Member Avatar for ~s.o.s~
0
110
Member Avatar for danizzil14

Anyone can make UFOs appear at will, if he has a confederate launching lighted balloons.

Member Avatar for MidiMagic
0
492
Member Avatar for ndeniche

That is a non-sequitur way of doing it that most people would not think of. It should be more straighforward.

Member Avatar for Dani
0
154
Member Avatar for schwarznavy

Just put the caption in a text box under the image, and write to it when you write to the image.

Member Avatar for MidiMagic
0
97
Member Avatar for MidiMagic
Member Avatar for Chaky

It looks to me like what happens when a set of frames is too wide for the screen size. It should be written so a scroll bar appears if the page won't fit, instead of just smashing things together.

Member Avatar for MidiMagic
0
183
Member Avatar for The Dude
Member Avatar for Serunson

It reminds me of a squirrel with a stroke I saw in the 1970s. It kept running in circles, because half of its brain had shut down.

Member Avatar for nieves22
0
94
Member Avatar for Sturm

Maybe the fat lady in the opera sang, and scared all the elements to one side. :icon_mrgreen: More likely it has something to do with frames.

Member Avatar for Dave Sinkula
0
148
Member Avatar for trihaitran
Member Avatar for Killer_Typo

Time flies like the wind. Fruit flies like bananas. Pop flies like the sun. Smoke flies like the clouds. House flies like garbage. Tsetse flies like humans. Pie flies like seltzer water

Member Avatar for Killer_Typo
1
119
Member Avatar for anthonyragland

It seems to still be doing it. I think the problem is that you are adding content through a script after the footer is rendered.

Member Avatar for anthonyragland
0
226
Member Avatar for praveen_kr541

Use relative addressing. Specify percentage of the width. Or enclose both objects in a div, and address them relative to the div.

Member Avatar for praveen_kr541
0
93
Member Avatar for Racoon200

You need an id on the same object with someclass. That id becomes the target of the assignment statement: [code] function changeSrc(clicked) { changeme.backgroundImage = 'someotherimage.someformat') } [/code] Put both the class and the id in the object with the background [code] <body class="someclass" id="changeme"> [/code]

Member Avatar for ~s.o.s~
0
195
Member Avatar for anthmaina

These settings actually belong to Windows Control Panel. IE provided a nonstandard way for you to change its appearance on a web page, but the scroll bar is not part of the web page, but the browser.

Member Avatar for roryt
0
98
Member Avatar for arjunsasidharan
Member Avatar for arjunsasidharan
0
186
Member Avatar for roryt
Member Avatar for sevdiaz

That's too much code to wade through without understanding your intent, but I would bet you have two styles which conflict applied to the same object, and that the two browsers are applying different rules to determine which style has priority.

Member Avatar for Phaelax
0
168

The End.