Brickie in Bangladesh
OK – it’s not technology related, but it’s an amazing video of how hard people work in this world to get by. Enjoy!
Design, code, optimise and inspire. Here you will find many great resources for your site for you to use as you please.
OK – it’s not technology related, but it’s an amazing video of how hard people work in this world to get by. Enjoy!
Here is a great php tip for those who want to load a different image into your header every time the page loads. For example, you may have a folder of images that you want to rotate in your header or any element of your site for that matter. Here’s how to do it.
Place all your images in a folder and name them something like this:
Use the php rand() function to give your header an random id.
<div id="header<?php echo rand(1,3); ?>">
<!-- header content here --></div>
The rand function in the code above returns a random number between 1 and 3 which is what we want. So every time the page is loaded, we get an id of either header1, header2 or header3. In you CSS you can now markup like this.
DIV#header1 {background-image:url("pics/image1.jpg")}
DIV#header2 {background-image:url("pics/image2.jpg")}
DIV#header3 {background-image:url("pics/image3.jpg")}
Now your page loads with a random header image. Brilliant!
We all know how important it is to get good rankings on Google and Yahoo. No matter whether you want to outsource your SEO or do it yourself, it is essential to know what not to do as well as what to do. So, without further adieu, here are the most common SEO mistakes that you must avoid at all times.
This is poison for your site. OK, you’ll have thousands of links, but not quality links. Google loves links if they are authoritative but will penalise you if you have loads of crap pointing to your site. Forget the business of getting thousands of links to your site. Spend your time instead enhancing your site and you will be much better off in the long run.
Always nice to have a free resource for your webdesign projects. Here you will find some excellent icons you can use for free.
All designers love experimenting with new textures and backgrounds. They are one of the first things visitors see when they go to your site so it’s always vital to have designs that won’t scare them away before they get to the content of your site. If your devoid of some backgrounds or textures, there are some great tutorials to get you going.