Blog
Welcome to the Whym Web Design blog - posts on topics related to technology including web design and search engine optimisation (SEO) for small businesses.
For our business news, visit the news page.
Although horizontally scrolling content is usually frowned upon, in some circumstances, it is necessary and even desirable - for instance, take a look at Apple’s horizontal list of products on it’s site. On their site, they have made use of a combination of CSS to create the horizontally scrolling content, and JavaScript to skin the scrollbar to fit in with the website design.
To create the horizontally scrolling div, firstly, we need the following HTML:
<div id=”horizontal”>
<img src=”example1.jpg” alt=”" />
<img src=”example2.jpg” alt=”" />
<img src=”example3.jpg” alt=”" />
</div>
Now, we need some CSS:
#horizontal {width: 500px;
height: 200px;
overflow: auto;
white-space: nowrap;} Read the rest of this entry »
March 7th, 2009 by Dan Price
Tags: CSS overflow, custom scrollbar, horizontally scrolling, HTML div
Posted in Web design | No Comments »
Well I purchased a brand new JVC MG330H camcorder today and I’ve got to say that at first, I wasn’t very impressed with it.
I unpacked it, gave it a short charge and then took a few videos in the room and then hooked it up to my Mac. A few days ago, I had ordered another camcorder before finding out it wasn’t compatible with my Macbook, so before ordering the MG330, I was careful to ensure it was fully compatible. I had to purchase and download a plugin from the Apple store so that Quicktime would allow me to play MPEG-2 files, and even then the MG330’s files are actually only MPEG-2 in sort, as their extensions are .MOD.
Following a bit of research, I discovered I could open the files in a freeware program called MPEG Streamclip - great I thought. However, after opening the first video, I realised that the videos had nasty horizontal lines on objects every time the camcorder or an object moved. The image looked grainy and blurry and certainly not what you’d expect from a modern camcorder. Read the rest of this entry »
February 17th, 2009 by Dan Price
Tags: JVC MG330, mac, mpeg streamclip, MPEG-2
Posted in Other technology | No Comments »
The following guest post was written by Sarah Scrafford of Web Design Schools:
We’ve all come across our share of the DIY people – the ones who are jacks of all trades and masters of none. This may be good enough for your pet projects or hobbies, but when it comes to your profession, professionalism pays. So if you own a web-based business or if your website plays a major role in contributing to your income, it’s best if you hire the best in the business. And this is why you need to ensure that the designer of your choice has nothing to do with these five fictional designers:
- The Search Engine Submission Guy: Sure, you want your pages to be picked up by all the search engines, especially Google; but beware of the designer who tells you he’ll pull all the strings he can to submit your site to as many search engines as he can. For one, that’s not the way your site needs to be optimized to be search-engine friendly; and for another, you’re highly likely to get labeled as spam.
- The Friendly Neighborhood Designer Guy: He’s a hit with the whole family, because he designs all their personal sites and doesn’t charge a dime for the same. But if you want the hits on your pages, steer clear of this one. A family designer should stick to his roots and design just those sites that will gain approval of adoring kith and kin. Aspiring to step out and experiment with your site may be on his agenda, but must definitely not find a place in yours. Read the rest of this entry »
October 30th, 2008 by Dan Price
Posted in Web design | No Comments »
It is important to optimize your web page’s title, both for visitors, but also for search engines. Having a relevant, and optimized page title can greatly improve your pages ranking and therefore increase your web site traffic.
Rule 1) Don’t leave the title blank
This is a fundamental, but it should be stressed. Leaving your page title blank massively inhibits your chances of getting high rankings. Even today, you may see some sites where the title simply says “Mozilla Firefox” or “Microsoft Internet Explorer” – by this, you know that the web designer hasn’t specified a title. Always make sure you specify a page title on each page - search engines prefer pages with titles that include relevant, descriptive keywords for the page content.
Rule 2) Always keep the title relevant to the content
Having a title that is completely unrelated to the content is a blackhat SEO method that some people use to attempt to get more traffic from search engines – using popular keywords in the page title, even if the actual site is unrelated to the specified title. Not only may your site be penalized by search engines if they discover that you are doing this simply to mislead people, but it actually means you won’t be receiving any quality traffic either. Instead, people will come to your site expecting something similar to the page title, and as soon as they see the site isn’t about that topic, they’ll leave. In fact, people actually looking for your site may find it harder if the title isn’t what they are expecting it to say! Read the rest of this entry »
September 5th, 2008 by Dan Price
Tags: optimizing page title, search engine ranking, whitehat SEO
Posted in SEO | No Comments »
When redirecting a visitor from one page or address page on your site to another, it is important to also bear in mind the effect this will have with search engines. Not all redirect methods are search engine-friendly, so to make sure that the search engines find the new page, and that any “link juice” from the old page is carried on to the new one, make your redirects SEO friendly.
As a general rule of thumb, the redirect should take place server-side, rather than client side. While client-side methods exist, such as meta-refreshes or Javascript redirecting, search engines often ignore these and will continue to cache the old page, rather than the new one. While visitors will see the new page, search engines might not.
A server-side redirect means that the new page is fetched on the server and sent directly to the client (in this case the search engine bot) in place of the old page – the search engine doesn’t get to see the old page anymore, even if visiting the old page’s URL. Read the rest of this entry »
September 2nd, 2008 by Dan Price
Tags: .htaccess, apache, mod_rewrite, search engine ranking
Posted in SEO | No Comments »