Jump to content
xisto Community

Tyssen

Members
  • Content Count

    1,159
  • Joined

  • Last visited

Everything posted by Tyssen

  1. I'm not in the habit of making stuff up: check out the reports. Also, visit any SEO forum and you'll find heaps of threads about it.
  2. The new versions are usually fixing security problems. The reason why IE isn't updated that often is because Microsoft either are unable to produce fixes that quickly or simply don't care.
  3. In the real world it doesn't work like that. People will still use whatever they want; you can't force anyone to upgrade. And if you're paying someone to make the website as compatible with as many browsers as possible, then you would expect those people to have some of these older browsers installed.
  4. The jigsaw validator will run through your CSS whether it's in one file or more. The way I link to more than one CSS file is like this: <style type="text/css" media="screen">@import "your.css";</style>and then in your.css, you have this: @import url("structure.css");@import url("text.css");
  5. You know that Web Developer extension I told you about the other day?Tools/View Speed Report.
  6. It's been done already - Evolt browser archive.
  7. Anyone who has a recent version of Firefox (from about 1.0.2-3 I think) should get automatic notifications of the availability of new versions from Firefox itself (as well as updates to extensions and themes).
  8. I lived in the UK, in London, for seven years. I think it's a great place to either visit or live. As with most European countries, it's got a lot of historic sites to visit, but it also has some great countryside and scenery. And being quite small, it's not hard to get around and see different things (although it can be on the expensive side).As for friendliness, I didn't find the UK any more or less friendly than anywhere else I've been. It'll depend where you go though. The big cities will be less friendly than smaller places, but that's the same all over the world.
  9. Get yourself any decent text-based web editor - they all have line numbers.
  10. Cuddling's OK in colder climates, but turns into a bit of a sweat-fest in the tropics.
  11. Nice spin doctoring on that one.
  12. Too much unused space and good luck getting that layout to work when the user changes the size of their text.
  13. I don't know that Mambo is being replaced - it's still going to be continuing under the control of Miro, but Joomla is a new project created by the Mambo development team.
  14. I'll give you 2/10 - woulda got higher except that none of your buttons work in Firefox and I HATE websites that automatically resize your browser. If I wanted my browser resized, I'd do it myself.
  15. If you install the web developer extension for Firefox and then 'Outline/Block level elements', you'll see the overlap. That extension is a good one to have - lots of features and tools for web design/development.
  16. It's cos #main is actually covering up all but the very top of your menu. You need to move #main down or give #nav a z-index higher than #main so it sits on top.
  17. How much more difficult? I would've thought the difference is neglible.
  18. What Spectre is talking about is absolute (/) and relative (../) URLs. The only time you should really use relative URLs is when the links are in the same folder (or in a sub-folder within that folder) as the page accessing them. Whenever you link to anything in a directory above the one you're in, you're better off using absolute URLs which start from the / which is the root of your directory and then work down.
  19. Tabbrowser preferencesWeb developerDisable targets for downloadsSmiley XtraLastTabSession SaverBookmarks SynchroniserminiTCheckyHTML validatorView formatted sourceGoogle Pagerank statusGooglebar
  20. Tyssen

    George Bush

    Was gonna say: George Bush a puppet of the guy who dreamt up socialism? How does that work? That's not just a US phenomenon - Australia's petrol prices have nearly doubled in less than a year too.
  21. Zone Alarm used to screw up some of the sites I'd visit, so I ditched it for Sygate Personal Firewall.
  22. Is this what you're after: $docRoot = $_SERVER['DOCUMENT_ROOT'];<?php include ("$docRoot./nameofyourfolder/nameofyourinclude.htm"); ?>
  23. I was gonna say. At my school, we didn't call people wearing AC/DC shirts posers, we called 'em 'bogans'. You get posers everywhere, not just high school.
  24. C:\Documents and Settings\Username\Application Data\Mozilla\Firefox\Profiles
  25. A better way to do it is to use the <label> tag cos that tag gives a label to each field (good for people with screen readers too). Here's an example of a form I've done: <label for="Name"><span>Name:</span><input type="text" name="Name" id="Name" maxlength="100" value="" /></label><label for="Phone"><span>Phone:</span><input type="text" name="Phone" id="Phone" maxlength="15" value="" /></label>label { clear: left; margin-bottom: 5px; }label span { float: left; width: 120px; margin-right: 10px; }input { padding: 2px 0; margin-bottom: 5px; width: 200px; font-size: 85%; color: #660000; vertical-align: middle; border: 1px solid #660000;}
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.