|
-
Firefox Pros and Cons
Date: 04/15/05
(Mozilla) Keywords: software, browser, css, security, microsoft, google
I'm not really looking for an answer in this post, mostly just the community's thoughts.
The high school that I attend has internet access, like most other high schools now a days, but our computer tech seems to think that Internet Explorer is the browser of choice and won't even consider looking at anything else. He's dependant on Microsoft and can't really think outside of the box. Anyways, he told me that for him to do anything, the district would have to put Firefox (the browser that I'm pushing) on the "aproved software list". I can come up with several key "pros" that Firefox has over IE, but I was wondering if any of you could tell me some that I'm overlooking. Here's what I have:
- Pop-up blocking - Correct CSS rendering - Tabbed Browsing - Increased stability (has only crashed once on me) - Increased security (in respect to its lack of security holes that have plagued IE since forever) - Easy access to various search engines - Constantly updated to fix security holes - Completely free
If I have any misinformation, I was just led to believe it from whatever source, so sorry about that. I tried mozilla.org for any other differences but couldn't come up with any.
Also, right before I posted this, I thought I should search google just one last time to pick up anything I might have left off. This site sounds very persuasive. Maybe I should send most of this article or a link to it to the District instead?
Source: http://www.livejournal.com/community/mozilla/272163.html
-
Calling all Cars...
Date: 04/16/05
(WebDesign) Keywords: css, html, web
Someone tell me why my scrollbar color CSS code isn't working!! Please look at this, in IE of course, and see if you can see what I cant!
http://www.cmwebdesign.org/blogger/newstxt.html
Its being published by the blogger.com account I mentioned a few posts ago.
I appreciate everyone's help by the way.
See what you wizards can do with this problem :(
Source: http://www.livejournal.com/community/webdesign/855404.html
-
CMS
Date: 04/18/05
(Web Development) Keywords: cms, php, blogging, css, html, web
I run a mixed content website with a couple of my friends. One of those friends knows html and some basic php. I know html and some basic php and some css. The third friend knows nothing.
I'm looking for a CMS that we can use to update our site.
www.thisisjerkass.com
That's our site, as you can see we have articles, videos, etc. I'm just looking for a way to make posts on the front page a lot easier. As of now, I have to edit four files just to put it up there and archive it. I can't use just a regular blogging cms because the format of the site isn't exactly a blog. Anyone have any suggestions?
Source: http://www.livejournal.com/community/webdev/189709.html
-
css help
Date: 04/21/05
(WebDesign) Keywords: css
I'm building a simple site and don't know too much css, I'm really working on it though :)
But for the meantime, I made a table for the basic layout and I have an image in the backround of one of the td's. I want it to not repeat, and be on the right.
using this:
.norepeat { background-repeat: no-repeat; background-attachment: fixed; background-image: url(image.jpg); background-position: right center}
it works properly in IE but firfox actually sticks the thing in the top right corner of the entire page, not just the td. I'm a little stumped *L*
Did I miss a step? I tried finding the solution on my own but I can't really spend too much time on this.
Anybody got a quick fix for me? Thanks!
Source: http://www.livejournal.com/community/webdesign/860850.html
-
css & state machines..
Date: 04/22/05
(WebDesign) Keywords: css
A couple of years ago I was writing Unrealscript for a game dev shop... One of the unique things about Unrealscript is the fact that a state machine is actually part of the language.
A while back, I got to fantasizing about what I wished I could do with CSS and a state machine seemed like a natural fit.
Read More
Source: http://www.livejournal.com/community/webdesign/861196.html
-
recommended article
Date: 04/22/05
(WebDesign) Keywords: css
Untold Mysteries of CSS, by Molly Holzchlag
it's no breakthrough, but i thought it useful (eventhough it's not new, it's 4 months old). at least it explains the universal selector in detail. i finally understood why IE doesn't interpret it correctly. :)
via andybudd
Source: http://www.livejournal.com/community/webdesign/862244.html
-
Microsoft discloses some IE 7 plans
Date: 04/26/05
(Web Technology) Keywords: software, css, web
Software giant yields to longstanding demands by Web developers, promising support for PNG, CSS graphics and layout standards.
Source: http://news.zdnet.com/Microsoft+discloses+some+IE+7+plans/2100-9588_22-5683842.html?part=rss&tag=feed&subj=zdnn
-
Damn IE
Date: 04/26/05
(WebDesign) Keywords: css, html, web
I'm making a website for my webdesign class using XHTML and CSS. I've got a little bit done and it validates on W3C and looks the way I want in Safari, Camino and Firefox (for Mac and Windows), but IE is not cooperating, and that is what the professor uses to grade these things. Basically what I have so far is a table set to span 100% of the window and it is flush against the top of the window. But in IE it's flush to the top and to the left, but there is space to the right of the table. Any idea as to why it's ignoring that I set the width to 100%?
Source: http://www.livejournal.com/community/webdesign/864080.html
-
Date Functions?
Date: 05/05/05
(Web Development) Keywords: css, html, web
I need help with creating a calendar in css, can someone help me out.
This is what I have to do:
1. I have to create a new blank file and save it as caldendar.js
2. Then within the file, I am supposed to insert a function named calendar() that has a single parameter named "caldate". The caldate parameter stores the date the user wants hightlighted in the calendar.
3. Within the command block of the calendar() function, I am to create an array named "MonthName" that stores the names of the twelve months. Th first element in the array, MonthName[0] should have a value of "January" and completes the rest of the array similarly.
4. Then I am to create an array, "DayName", that stores the three letter abbreviations of the seven weekday names, starting with DayName[0] ="Sun".
5. After the DayName array, I am to create a date object variable named Calendar_Day. If the value of the caldate parameter is equal to "today", set Calendar_Day equal to the current date and time; otherwise, set Calendar_Day equal to the date specified by the caldate parameter. (Hint: use the command: Calendar_Day = new Date(caldate)).
6. Use the getDate(), getMonth(), and getFullYear() methods to extract the day of the month, month number, and four-digit year from the Calendar_Day variable. Store these values in variables named ThisDay, ThisMonth, and ThisYear, respectively.
7. Then I am to use the doucment.write() method to write the following tags to the Web page:
|