!!blue
Members-
Posts
351 -
Joined
-
Last visited
Everything posted by !!blue
-
too bad it isn't *really* open source -- as in free for commercial use too. btw: looks fugly in Netscape 4.7/Win XP Yuck! another fully customizable (but not fully free) is at http://brothercake.com/dropdown/ I'm still looking for a completely free one that's cross browser/platform.... later, !!blue
-
very interesting.... Naughty
-
I just like all the sales!
-
no more error but isn't doing what it's supposed to be doing errr....
-
nope, that didn't work, now it tells me (the javascript console anyway) that -- Error: isIE is not defined. so no good
-
As I'm sure many of you already know, IE has a problem with showing <abbr> tags correctly. If ya didn't know, now you know. The abbr tag allows you to have a word like HTML and when the viewer hovers over the word a "tooltip" shows up with what HTML means. The u can use CSS to underline all abbr's and show a "help" cursor when u roll over it. <abbr title="HyperText Markup Language">HTML</abbr> Don't even get me started on the whole acronym vs. abbr thing either. Mad!!! Anyways, I found a javascript code that'll check wether a browser is IE and change all the abbr in your html page and rewrite it so IE can render it properly. Here's the article about it Styling <abbr> in IE So my question is how can I have the JavaScript code in an external file and have the webpage it's linked in run it when the page loads. The code'll only work if it's in the head of the webpage but I don't want it there. >function styleAbbr() { var oldBodyText, newBodyText, reg if (isIE) { oldBodyText = document.body.innerHTML; reg = /<ABBR([^>]*)>([^<]*)<\/ABBR>/g; newBodyText = oldBodyText.replace(reg, '<ABBR $1><SPAN class=\"abbr\" $1>$2</SPAN></ABBR>'); document.body.innerHTML = newBodyText; } } window.onload = function(){ styleAbbr() }; isIE = (document.all) ? true:false; I tried adding the function to the body onload tag like so: <body onload="preload('images/window.gif','images/red.png'); styleAbbr();"> but that didn't work either. I want to have the above function in an external js file and run when the page is loaded. any ideas? thanks, !!blue
-
that's always there; I don't think there's a way to get rid of it. It's prolly there for quick access.
-
Aww man!! They don't have the AutoScroll extension for Firefox yet! (that's where you can scroll with the middle mouse button). all my other extensions are up tho
-
Phew! I'm glad to hear that Firefox'll pick up my extensions! I was hesitating to update b/c of that. Once you get ur world the way you want it, life comes along and twists it! Off I go to download Fireffox I just switched over the Thunderbird last week and I haven't had any problems with it. And I have an extension in Firebird that'll let me open Thunderbird (or any other app) with a click of a button! later, !!blue ---------------------edit------------------------- actually I'm reading the Release Notes and it won't pick up the extensions, I actually have to find updates for each one that are compatible with Firefox. Hmmm.. I hadda feelin' it was too good to be true. But I might update anyway. I'll see how it runs cuz there's a known issue for Windows users:
-
Why not offer something like this? http://www.dynamicdrive.com/dynamicindex1/contextmenu.htm Works in Mozilla Firebird 0.7, Netscape 7, & IE (haven't tested on other browsers or on a Mac). While I agree with Raul, it offers another alternative. later, !!blue -------------- edit ----------------- kaseytraeger, great advice! guess I better get on the ball! -------------- edit -----------------
-
it's almost party time! enjoy the weekend!
-
great! that's what I needed to know, & thanks for the extra info too! later, !!blue
-
:hug: thanks! all I hadda do was go into Cpanel, click on Manage Accounts and view the login. thanks again, !!blue
-
I created a subdomain like in this posting by Lianna Create Subdoman to SSL Horde Webmail and when I go there I get a dialog box that tells me the browser is "Unable to verify the identity of plain.rackshack.net as a trusted site. Possibly b/c: - browser doesn't recognize Certificate of Authority that issued the site's certicate - Sites certificate is incomplete due to a server misconfig - you're connecting to a site pretending to be plain.rackshack.net, so it can possibly get your info [ Click to examine certificate ] Accept the Certificate: ( a ) forever ( b ) temporarily for this sesson or ( c ) never. " I said temporarily, but what does this mean? Is it not secure? does the browser not recognize the certificate? What's up and what should I do? thanks, !!blue
-
Raul, When I log into Horde, I use one username and password then once I'm in, I click on Folders and each email acount is in a folder with its own inbox.... INBOX (main account) | - Drafts | - Sent | - Saved | - Spam | - Trash | -> blue (sub account 1) | - Inbox | -> zulema_ortiz (sub account 2) | - Inbox I'd like to have Thunderbird show me email from the main email & the two "sub" emails. Did I just confuse u more? Maybe it can't be done.... help, !!blue
-
That's easy: go to Flashkit.com click on "Movies" and do a search for "slide show" you'll be able to download full FLA files and customize them to your needs. have fun! !!blue
-
Ok, now I that I got Thunderbird, I don't know how to add all my emails from my website here at TCH. Because they all have the same user name (the name Horde uses to log in), thunderbird won't let me add each email as a separate account. Right now, I only have zulema_ortiz @ zoblue.com, but I can't add blue@.... or any other ones... anybody know how I can do this? thanks, !!blue
-
bolded items are not in my code, these are written in by W3C's validator. Line: 0 Context: a#home:hover , a#art:hover , a#design:hover , a#wallpaper:hover , a#contact:hover Parse Error It's almost as if it's saying "In Line 0 there is code that is out of Context" or something like that... Actually, I've fixed it; the section of CSS code WAS as follows: >a#home { top: 31px; left: 162px; width: 93px; height: 41px; } a#design { top: 31px; left: 261px; width: 114px; height: 41px } a#art { top: 31px; left: 381px; width: 54px; height: 41px;} a#wallpaper { top: 31px; left: 441px; width: 177px; height: 42px; } a#contact { top: 31px; left: 622px; width: 122px; height: 42px;} a#home:hover { background-image: url(../images/index2.gif); } a#art:hover { background-image: url(../images/art2.gif); } a#design:hover { background-image: url(../images/design2.gif); } a#wallpaper:hover { background-image: url(../images/wallpaper2.gif); } a#contact:hover { background-image: url(../images/contact2.gif); } /* this section didn't validate + + + + + + */ a#home:hover, a#art:hover, a#design:hover, a#wallpaper:hover, a#contact:hover, { border: none; } But now I just combined the two hover's and just added the "border: none;" to each a:hover line like so: >a#home:hover { background-image: url(../images/index2.gif); border: none; } a#art:hover { background-image: url(../images/art2.gif); border: none; } a#design:hover { background-image: url(../images/design2.gif); border: none; } a#wallpaper:hover { background-image: url(../images/wallpaper2.gif); border: none; } a#contact:hover { background-image: url(../images/contact2.gif); border: none;} it got kinda crazy there for a minute !!blue
-
I just found out that one of my CSS stylesheets is giving me a parse error? And I'm thinking, "Wha? Huh?" here's what it highlights as incorrect code: >Line: 0 Context : a#home:hover , a#art:hover , a#design:hover , a#wallpaper:hover , a#contact:hover Parse Error - can someone please explain? I'm using a technique from this ALA article: Night of the Image Map. later, !!blue
-
try this post: http://www.totalchoicehosting.com/forums/i...indpost&p=23151 cuz the same thing was happening to me. later, !!blue
-
Both those icons look like they're using the Silkscreen font. Tons o' free fonts at DaFont, including Silkscreen. later, !!blue
-
Add me to the list of satisfied customers! later, !!blue
-
thanks! btw: sometimes I'm given the *lovely* task of taking an old html page/site and update it, e.g. add CSS, convert to XHTML, new images or other such stuff. later, !!blue
-
At work I have to use BBEdit to code what I work on. With my trusty laptop beside me, Dreamweaver MX, and a memory stick it makes life a little easier. My question is in regards to this: BBEdit has a button that, when clicked, automatically makes all the tags lowercase (and another button to make them uppercase). Is there a feature like this in Dreamweaver? Helps if I want to re-code an existing page into xhtml. I'm sure I'll have more questions...and hopefully some answers too! thanks, Z
-
u totally lost me do you mean it's http : //mail/yoursite.com/accountname ? or http : //yoursite.com/webmail/mail/yoursite.com/accountname/ ?? I'm lost... (urls spaced out so they won't link)
