drbrain

msg:585207 | 10:56 pm on May 1, 2003 (gmt 0) |
Eric Meyer's css/edge [meyerweb.com ]
|
pageoneresults

msg:585208 | 11:01 pm on May 1, 2003 (gmt 0) |
You could also start right here... HTML and Browsers [webmasterworld.com] I think you'll find just about every html tip out there and then some. Grab a comfortable seat, and get ready for information overload. Welcome to WebmasterWorld! P.S. Oh, make sure you read this thread to get some tips on what to do while performing all of that research... Back Problems - Inherent in IT [webmasterworld.com]
|
Hester

msg:585209 | 10:05 am on May 2, 2003 (gmt 0) |
Tip: nolayer Although it is not valid XHTML, you can use <nolayer> to hide elements that don't work in Netscape 4. Tip: PHP To save replicating large parts of code that appear on several pages, save the repeated code to a separate file. Then just use PHP to include the code via a single line. You can also use PHP to create variables, and have a page change depending on the variable. Eg: load a random stylesheet. Tip: IE-only code If an element (such as a header or last list item) moves down a line in every browser except IE, the result is text too close. You can force IE to add an extra line too by using this code: <!--[if IE]><br /><![endif]-->
There is also similar code that does the opposite - allows content to be hidden from IE but shown in other browsers. You can also decide the version of IE. Take a look at the Microsoft web developer site for more information.
|
BlobFisk

msg:585210 | 10:29 am on May 2, 2003 (gmt 0) |
Hesters IE conditionals is a nice little tip. Tedsters thread [webmasterworld.com] on this is extremely useful and informative.
|
Pastorsi

msg:585211 | 10:41 am on May 2, 2003 (gmt 0) |
I've recently pick up this way round IE positioning things and setting the dimensions of things slightly differently than Mozilla. Write the css this way: div#base div#stage { height:84%; left:10%; top:12% } div#base>div#stage { height:83.5%; left:10.2%; top:12.3% } Mozilla reads the css line with > in it but IE doesn't.
|
Hester

msg:585212 | 10:56 am on May 2, 2003 (gmt 0) |
What happens when IE7 comes out and supports the CSS that Mozilla does?
|
limbo

msg:585213 | 11:10 am on May 2, 2003 (gmt 0) |
I found this snippet of code this morning: <a href="mailto:me@widgets.com?subject=Any Title text you want here&body=body text header here?">Email</a> It's probably old hat to many but I like it. This seems to work fine with IE 5.5, Outlook Express and Outlook 2000. But I have no idea if this works for other Email clients or on other Browsers. Ta Limbo
|
grahamstewart

msg:585214 | 11:18 am on May 2, 2003 (gmt 0) |
If you are going to use a mailto link then at least protect yourself a little bit by changing parts of the address into html entities. Otherwise you'll get hammered by every spammer in the world who has a screen scraper/mail bot (i.e. most of them).
|
limbo

msg:585215 | 11:27 am on May 2, 2003 (gmt 0) |
:o Good point. How do you >>change parts of the address into html entities?
|
rharri

msg:585216 | 11:30 am on May 2, 2003 (gmt 0) |
limbo, That mailto works with Eudora as well. Bob
|
g1smd

msg:585217 | 12:42 am on May 3, 2003 (gmt 0) |
HTML entities are like < representing a character. As well as entities, I usually write that line using external javascript as well. So, my tip is to put all javascript and CSS in external files.
|
Hester

msg:585218 | 1:44 pm on May 21, 2003 (gmt 0) |
Tip: Hiding tooltip text To hide the ALT text for an image that comes up as a tooltip in Internet Explorer, simply add title="".
|
Jabzebedwa

msg:585219 | 1:21 pm on May 25, 2003 (gmt 0) |
If you are going to use a mailto link then at least protect yourself a little bit by changing parts of the address into html entities. Otherwise you'll get hammered by every spammer in the world who has a screen scraper/mail bot (i.e. most of them). |
| Where might a guy (or gal) find out more about these "html entities"?
|
mat

msg:585220 | 1:25 pm on May 25, 2003 (gmt 0) |
Do a Google search for 'email address munger [google.com]'.
|
Pastorsi

msg:585221 | 8:07 pm on May 25, 2003 (gmt 0) |
A good resource is at - [w3schools.com...] This gives a good and extensive list of the most useful HTML entities. I've looked over it though and it doesn't give the entities that would work for disguising the mailto: address.
|
TheWhippinpost

msg:585222 | 9:03 pm on May 25, 2003 (gmt 0) |
I wouldn't rely too much on munging to stop the harvesters - If it can be munged, it can be de-munged, quite easily.
|
digitalghost

msg:585223 | 9:11 pm on May 25, 2003 (gmt 0) |
>>If it can be munged, it can be de-munged, quite easily. Sell the "munger" to webmasters, sell the "de-munger" to email spammers. ;) Every 3 months, sell 'em the upgrades. Sort of like anti-virus marketers...
|
Nick_W

msg:585224 | 9:17 pm on May 25, 2003 (gmt 0) |
h1 { font: bold 2em arial, verdana, sans-serif; } Nick
|
|