If you are reading this, please get modern browser.
skip to main content | skip to main navigation | skip to secondary content

One-pagers will be the hit of the 2006!

~ 22nd December 2005. · 11:49 CET · permanent link · printer friendly ~

Oh, well – at least if we don’t count pop-ups, downloadable .PDFs and such… They came in big style this year, and I feel they are going to make their mark in the next season, too. Continue reading ›

Trying with another hosting company

~ 20th December 2005. · 11:44 CET · permanent link · printer friendly ~

Ever since I started with this web thing, I’ve been quite satisfied with my current hosting provider. By the release of some high traffic sites (you guessed it right – the Typetester), I faced the troubles caused by the numbers of visitors and multiple database queries.

I already purchased a new account from other provider, but I wanted to post my expectations for the future reference: Continue reading ›

Trends in Croatian news portals

~ 7th December 2005. · 12:11 CET · permanent link · printer friendly ~

Last month, the Poslovni Tjednik web site was reworked. Poslovni Tjednik is one of Croatian business magazines. We didn’t design that site, but we designed 24 sata and Nacional earlier this year. Those two are also newspapers online counterparts.

On both of our projects we brought some trendy concepts, as well as invented a few fresh ones. As a developer I often question myself about what are our influences (if any) to other development teams. The day has come for me to finally get that answer. Proud as I can be, I found a few great improvements on the Poslovni Tjednik, which I’d like to believe we at the Burza were on the minor part responsible for. Continue reading ›

Remove annoying rectangle in the latest Firefox build

~ 3rd December 2005. · 11:30 CET · permanent link · printer friendly ~

The negative text indent image replacement technique (a.k.a. the Phark image replacement) is very popular and widely used in many modern (i.e. accessible) designs.

There’s, however, this annoying rectangle, which is in Firefox 1.5 now expanded all the way to the left (usually it’s 9999 pixels to the left). The rectangle is ugly, and while we’re waiting for Firefox developers to fix it (report Firefox bugs), here’s a quick and dirty solution:

var remove_rectangle = function() {
    var lnks = document.links;
    if (lnks) {
        for (var i = 0; i < lnks.length; i++) {
            lnks[i].onmousedown = function() {
                this.blur();
                return false;
            }
        }
    }
}
window.onload = function() {
    remove_rectangle();
    // the rest of your onload functions
}

Unfortunately, we can’t remove the rectangle completely, because focus() functionality is necessary for browsing with a keyboard.

Speaking of which, do you always define :focus and :active pseudo-classes or do you sometimes forget about them?

* Please keep in mind that this is a personal web site and it does not reflect the position or opinion of my respective employers, organizations or partners.

Typetester – compare screen type Supported by Veer.

What is this?

A web log of Marko Dugonjić, web professional from Croatia. Topics covered:

Translate this site

German, Spanish, Italian, French or Japanese (via).

See you there!

Feel like buying a book?

Try with maratz.com aStore

Worth visiting

top of the page | skip to main content | skip to main navigation | skip to secondary content