Google releases webmaster portal

Geplaatst in Internet, Webdesign, Webdevelopment Nog geen reacties

Wanna know how google indexes your page, get good tips on better desiging your site for indexing or just want to run some Google tests on your site? Then head right to the Google webmaster central.

Welcome to your one-stop shop for comprehensive info about how Google crawls and indexes websites. You can learn here how to ensure that your site is easily crawled and indexed and access tools that will enable you to diagnose crawling issues, study statistics on how your site is doing in our index, and tell us how you’d like your site to be crawled and indexed.

Source: Betanews


Dark-i.com jumping the stylegala train?

Geplaatst in Internet, Webdesign Nog geen reacties

Looks like someone got interested in selling their site too now that Stylegala.com is about to sell for over $40k (current highest bid on Sitepoint Marketplace). DarkEye is a new breed of ‘living’ web design showcase. You’re in control: you rate, review and submit sites that instantly appear in front of thousands potential users. Alot like the dozens of other CSS galleries but this one is different, I visited frequently and must say that the fresh design (who was it that said gray was the new black??) made it a welcome change to the common stylegala and cssvault like galleries. The color palette integration is very usefull too!

If you are interested and have $5k laying around you should check this thead on the Sitepoint marketplace.

Edit: Looks like DarkEye isn’t the only one being inspired by the Stylegala sale … CSS Elite is another one for sale on Sitepoint Marketplace … Now lets just hope this isn’t becoming a trend.


Stylegala for sale

Geplaatst in Internet, Webdesign Reeds 2 reacties

Stylegale is for sale!! I was shocked when i read this on the sitepoint marketplace. Not that it’s a bad thing, sometimes selling your site actually can improve it, fresh ideas could make it a better site. But still … stylegale is a site i frequent regulary and to see it up for sale makes me wish i had the money to buy it …

Maybe you are interested?
view sitepoints marketplace


Are you looking for work?

Geplaatst in Webdesign, Webdevelopment Reeds 1 reactie

Inventis Are you looking for work in the webdesign business? Passionated by webdesign and also have webdevelopment experience (PHP/MySQL)? Then you might just be what we are looking for at Inventis. If you are interested in working with a motivated and fun team in the middle of Limburg, Belgium mail your CV along with your motivation to jan@inventis.be and maybe we can count you among one of our valueable team members soon!


Lightbox JS 2 Overlay Opacity

Geplaatst in CSS, Webdesign Reeds 9 reacties

Today I’ve spent over an hour searching how the background opacity with the lightbox JS 2 has been implemented. I wanted to change the opacity from 80% to 40% or less since one of our clients requested so.

What does one do first when one wants to change some layout elements? Check out the CSS stylesheets, and yes. There are three lines defined in the #overlay declaration:

filter:alpha(opacity=80);
-moz-opacity:.80;
opacity:.80;

How convenient, lets just cut all values in half and the opacity of the background overlay should turn more transparent, no? Wrong!

Apparently these CSS styles are only defined to support the script degrading gracefully, in javascript enabled browsers it doesn’t serve any active use, you could leave the styles out and the script would still be fully functional. But how do we change the opacity then? Well after some digging through the javascript code it ends up being fairly straightforward. Just open lightbox.js and search for the following line (it’s around line 320 depending on which version of lightbox JS 2 you are using)

new Effect.Appear('overlay', { duration: 0.2, from: 0.0, to: 0.8 });

The red value is the value you wanna change to manipulate the transparency or opacity of the page overlay. Pretty easy to change if you know where to look.

I hope I saved some of you some time with this. It could prove usefull if Lokesh Dhakar, the creator of this fabulous script, would include some configuration directives in the top of the script controlling the behaviour and style of the lightbox.