2,255 Posted Topics

Member Avatar for purc

Here's what I use: [code] <style type="text/css"> .cenx {text-align: center;} .bxfix {margin: 0; border: none; padding: 0;} .ceni {clear: both;} img {padding: 4pt;) /* set to what you want */ </style> .... <div class="cenx bxfix"> <img src="im.jpg alt="Imagetocenter" class="ceni" /> </div> [/code]

Member Avatar for MidiMagic
0
166
Member Avatar for frosty714
Member Avatar for frosty714
0
81
Member Avatar for votingserver

Can it handle the Independent Voting System, or is it restricted to the faulty Plurality Voting System?

Member Avatar for MidiMagic
0
72
Member Avatar for Zay

It means Microsoft is greedy. It wants to make sure your product is genuine, so you have to register with them. If you downloaded it from Microsoft, they should have given you the key in some way. Note: have you confused a number 0 with a letter O or o, …

Member Avatar for cwarn23
0
117
Member Avatar for steveg242

What about distributing the changes at night? How about using a network server for one shared file?

Member Avatar for boblarson
0
111
Member Avatar for joequincy

If the script is embedded in the web page, it might be finding and matching itself.

Member Avatar for digital-ether
0
225
Member Avatar for Crazy Owl
Member Avatar for Crazy Owl
0
134
Member Avatar for tefflox

I don't think you are using setTimeout correctly. The setTtimeout function wants a function call as a parameter, not a statement or an object. It delays the calling of that function, but does not delay any of the statements after the call. You are trying to call a statement as …

Member Avatar for tefflox
0
103
Member Avatar for tommy2008

Since I don't have Opera, I can't see the trouble. But you do have several common troubles: - Nonzero surrounding styles (margin, border, padding) in the same style definitions and tags that have size styles (width, height) causes cross-browser incompatibility. - You have a typo: w\idth - The location of …

Member Avatar for tommy2008
0
98
Member Avatar for EndofSentence

The table prevents the browser from resizing. The td tags size to the image. It causes scrollbars to appear instead.

Member Avatar for EndofSentence
0
86
Member Avatar for Salem

I don't understand the limit on searches applying when I go BACK, from the first search item I looked at, to see the results list again to look at another found item. It should not perform the search again, but it tries to, and replaces the results list I want …

Member Avatar for Dani
0
146
Member Avatar for kahaj

Don't specify the image size in the html code. This causes the browser (as opposed to the graphics editor) to change the size of the image. It is not well adapted at doing this.

Member Avatar for CoffeeChef
0
139
Member Avatar for jephthah

The real reason is that you can't have cross-browser compatibility if you place nonzero surrounding styles (margin,. border, padding) in the same tag that has size styles (width, height). IE crams the surrounding styles INSIDE the size styles. Other browsers put surrounding styles OUTSIDE the size styles, as the W3C …

Member Avatar for jephthah
0
111
Member Avatar for designermom2
Member Avatar for venuchitti

You should not have the right to block any function of a browser. This belongs to the user, NOT TO YOU. I am totally SICK of greedy webmasters who want to control the computers of the people who visit their pages.

Member Avatar for sparkyd
0
131
Member Avatar for tefflox

His page is xhtml. It requires the self-closing form of br: [icode]<br />[/icode] The problem is the use of the br tag to insert breaks in the text. The correct way to display this is to use p tags to surround the paragraphs. This is not the intent of the …

Member Avatar for MidiMagic
0
98
Member Avatar for samarinder

I'm here! But I can show up only 2 or 3 times a week. You can't have more than one pair of inline style tags. You have two. And style tags must be in the head. One of your pairs is between the head and the body. You also have …

Member Avatar for MidiMagic
0
108
Member Avatar for sagedavis

The second way does not validate. The div tag is not self-closing. A tag is defined as being either a tag pair, or self-closing. It can't be both. Many browsers totally ignore a pair of tags with no contents.

Member Avatar for MidiMagic
0
339
Member Avatar for monto
Member Avatar for R0bb0b
0
91
Member Avatar for anitha2324

Replace the manager with one who can write code.:icon_cheesygrin: The only real way to set page properties is to put them into a stylesheet used by all files. But that means that each page must use the stylesheet in the same way. You may end up with the job of …

Member Avatar for Luckychap
0
153
Member Avatar for karkar_87

SQL usually does not do that. It wants to keep the same ID for the same record in perpetuity. The easiest way would be to delete the numbered column, then add it again as an autonumbering field. But it must not be the field the data is sorted on, and …

Member Avatar for MidiMagic
0
63
Member Avatar for Phive

You need two tables. One is for the temporary file sent to the manager. The other is the permanent table, under the control of the manager. The manager then merges the record into the main table.

Member Avatar for MidiMagic
0
1K
Member Avatar for supermom

He means those things where you have to type in the letters visible in an image to validate the submission. This requires a server-side script.

Member Avatar for buddylee17
0
63
Member Avatar for chinalotus

You do not understand how the Internet works. If they can see it, they have already downloaded it. It has to be downloaded before they can see it. So the image is ALREADY on their computer by the time they can see it. They can then copy it by any …

Member Avatar for R0bb0b
0
326
Member Avatar for innovativeatul
Member Avatar for UIJAD
0
203
Member Avatar for Venom Rush

Display the title of the page instead of the link. Or do something like this: [code] <p><a href="this.is.the/really/long/url.htm">this.is.the/</a> <br />really/long/url.htm</p> [/code] Or even this: [code] <p><a href="this.string.is.the/really/long/url.htm">this.string.is.the/</a> <br /><a href="this.is.the/really/long/url.htm">really/long/url.htm</a></p> [/code] The last one makes both pieces of the link text active.

Member Avatar for sreein1986
0
99
Member Avatar for ardeezstyle

This is a security violation. It is normally a security violation for any web page (origin known or unknown) to mess with the file system on the browser's computer without permission of the owner of that computer. If IE permits it, it is foolish to use IE.

Member Avatar for ardeezstyle
0
118
Member Avatar for insauciant
Member Avatar for seo-support.net

It's possible with a .bmp image, since each byte corresponds to a specific point in the image. It makes a speckled part of a horizontal line in the file. Because data compression is used in other image file types, it is not possible to put such info into other kinds …

Member Avatar for seo-support.net
0
87
Member Avatar for v0rt3x

The problem is that the market for people able to do this is oversaturated. For every job, there are 100 applicants.

Member Avatar for MidiMagic
0
109
Member Avatar for punkrockbboy

The problem is in your style. [code] ....{width: 78px; height: 112px; margin: 0px 5px 0px 5px;} [/code] You have size styles and nonzero surrounding styles in the same style. This causes IE to behave differently than other browsers. The other browsers put those 5px margins outside the 78px width, for …

Member Avatar for MidiMagic
0
168
Member Avatar for justinmyoung

Since each browser has its own way of rendering text, you need to do the following: - Don't expect your page to look exactly the same in all browsers. This is impossible. - Don't use either absolute or relative positioning. Use containers to position the text and the graphics. - …

Member Avatar for MidiMagic
0
70
Member Avatar for lightningrod66

Excel has a "Save as web page" option in the File menu. Do all of your calculations with ranges, so you can insert a column and they still work. Be sure to use the correct cell addressing modes, so inserting a row doesn't change your references. Then, just replace the …

Member Avatar for MidiMagic
0
94
Member Avatar for newtosql

Export the data to an Excel spreadsheet. Or better, open the file into Excel (use the file type dropdown in the Open window), then save it as an Excel spreadsheet.

Member Avatar for MidiMagic
0
101
Member Avatar for rickya100

You can't call a function that is below the function you call it from. Move endSlide up above slidetick.

Member Avatar for rickya100
0
332
Member Avatar for sublime99

Are you constantly repainting them? If so, you need to not repaint them until an object changes color. Then repaint it only once.

Member Avatar for MidiMagic
0
62
Member Avatar for punithapary
Member Avatar for Funnygirl33

Go into your browser settings and disable JavaScript. Or copy the html file and edit out the code in the copy.

Member Avatar for MidiMagic
0
107
Member Avatar for glogstn

Your ISP may be either prohibiting attachments, or configured by a setting in your user preferences to prohibit them.

Member Avatar for MidiMagic
0
94
Member Avatar for pistonpilot

This is a setting on what to do with read mail. It is under Options in the Tools menu. It could also be that a spam filter is thinking the emails are spam and taking care of them as such.

Member Avatar for MidiMagic
0
104
Member Avatar for Loopster

You have an improper nesting. The ul tag pair can't be inside a p tag pair. It kept the p tag pair from wrapping around the image.

Member Avatar for Loopster
0
125
Member Avatar for drago865

One script can't see new objects another script creates. It sees only the original document structure at the time the page opened.

Member Avatar for drago865
0
155
Member Avatar for Metalsiege

Several errors: - 0px is not a valid style. use 0 for all zero values, with no unit of measure. 0 with a unit of measure makes a Firefox error. It creates a value which is not 0 instead. - Don't put size styles (width, height) and nonzero surrounding styles …

Member Avatar for Metalsiege
0
143
Member Avatar for MoazMM

To start with, you can't put script tags inside script tags. You can't put ANY tags inside script tags. It's better to use an external .js file. CAPITAL letters are deprecated in tag, attribute, and styles. Newer browsers are case-sensitive, and they recognize only the lowercase versions of defined tag, …

Member Avatar for somashekar
0
128
Member Avatar for ryy705

This is a proper use of tables. Tables are not deprecated. What W3C wanted to stop the wrong use of tables for is using them to create margins, borders, or padding (which was done by web authors before those styles existed).

Member Avatar for MidiMagic
0
91
Member Avatar for thosecars82
Member Avatar for MidiMagic
0
129
Member Avatar for sunshine12

Note that browser accessibility settings allow users to turn off changes to link colors. So make sure that your links will show up if someone turns off link color changes. If you make the link white and the background blue, the links disappear on browsers with link color changes disabled. …

Member Avatar for MidiMagic
0
41
Member Avatar for Rajz123
Re: CSS

Several tips: 1. Don't use size styles (width, height) in the same tag or style that contains nonzero surrounding styles (margin, border, padding). This is guaranteed to make IE render the page differently than other browsers. If both are needed, nest tags in the order you want them nested. 2. …

Member Avatar for MidiMagic
0
74
Member Avatar for Agreaves
Member Avatar for sreein1986

You have to put the link in <a> tags. A style can't have a link. Or are you wanting the link to the style sheet. It goes in the style tag in the head section. Note that browsers can switch off color changes for links with user settings.

Member Avatar for MidiMagic
0
120

The End.