Template and add-ons
I read quite a lot of blogs daily. Long term bloggers just like 'starting blogs'. I for myself am a starting blogger but have already been 'online-around' for quite a long time now (read :: approx. 15 years) and have seen the web evolve. From black pages with just content at the left to pages entirely coded in flash.
Nowadays I 'sit behind' a 8MB broadband connection. This means that every site shows up almost as fast as I can click and that is where all the 'fuzz' starts. A lot of long term bloggers have a personalized design. Newer bloggers quite often tend to change their 'standard blogtemplate' into something more personal as well. But a lot of bloggers also use 'third party' add-ons in their blog.
Two of the most popular ones being BlogRolling a service to share your links with your readers. Another popular add on is TTLB Ecosystem to show your 'blogpopularity' (the amount of blogs linking to you in the last 7 days). Of course there are a lot more add ons, but I have choosen especially those two for this thread.
'Experienced' blogreaders know that those two services need regularly 'quite some time to load'. Due to this I would advice to use those two services in a sidebar at the right (especially when no css-knowledge). In that way first the content (posts) of your blog will load and people (especially the ones having a dial-up connection) can start reading and don't have to wait till the 'sidebar' is loaded.
People still wanting to have their sidebar (with plugins) at the left, can avoid this 'problem' with the use of css. I know some designers might 'kill me' now, but if I need to wait up to 20 seconds before your sidebar is loaded, I will not read your blog either.
Define for your sidebar (with the third-party add ons) and your content-area absolute postion in your css. This means that the css tells the browser exactly where the 'element' must be positioned. In my blog I did the same with the header image, and the sidebars. I first load the posts in my blog, before loading the header image, to avoid that users with a dial-up connection have to wait till my header image is loaded (and that I immediately scare them of with the header as well *lol*). Trust me with only 56kb the header image is still 'small' compared to other blogs (see 'small remark/hint).
Example :: How to postion something ---> My 'first' sidebar.
Here I define exactly where this sidebar must be positionned , related to the template borders.
-back to the theory-
In the template you postion the element (sidebar or header image) after the element that should be loaded first, the content.
I am aware of this 'not being ethical correct' for many designers, but it is a choice I made and I think that it is really 'helpfull' to your readers if they don't have to wait for your blog (posts) to load, because BlogRolling is out, again.
Some examples (screenshots not relevant in this case)
- How not to do :: Plaid Toaster
- Good use of CSS in this purpose :: Life Or Something Like It....
Feel free to discuss/argue this point (or tell me that I could as well have positioned my sidebar related to the right margin *lol*)
Any questions about how to use this feature please in this thread at BlogExplosion's forum.
Nowadays I 'sit behind' a 8MB broadband connection. This means that every site shows up almost as fast as I can click and that is where all the 'fuzz' starts. A lot of long term bloggers have a personalized design. Newer bloggers quite often tend to change their 'standard blogtemplate' into something more personal as well. But a lot of bloggers also use 'third party' add-ons in their blog.
Two of the most popular ones being BlogRolling a service to share your links with your readers. Another popular add on is TTLB Ecosystem to show your 'blogpopularity' (the amount of blogs linking to you in the last 7 days). Of course there are a lot more add ons, but I have choosen especially those two for this thread.
'Experienced' blogreaders know that those two services need regularly 'quite some time to load'. Due to this I would advice to use those two services in a sidebar at the right (especially when no css-knowledge). In that way first the content (posts) of your blog will load and people (especially the ones having a dial-up connection) can start reading and don't have to wait till the 'sidebar' is loaded.
People still wanting to have their sidebar (with plugins) at the left, can avoid this 'problem' with the use of css. I know some designers might 'kill me' now, but if I need to wait up to 20 seconds before your sidebar is loaded, I will not read your blog either.
Define for your sidebar (with the third-party add ons) and your content-area absolute postion in your css. This means that the css tells the browser exactly where the 'element' must be positioned. In my blog I did the same with the header image, and the sidebars. I first load the posts in my blog, before loading the header image, to avoid that users with a dial-up connection have to wait till my header image is loaded (and that I immediately scare them of with the header as well *lol*). Trust me with only 56kb the header image is still 'small' compared to other blogs (see 'small remark/hint).
Example :: How to postion something ---> My 'first' sidebar.
.menu1box {
position: absolute;
left: 454px;
padding-top: 8px;
padding-bottom: 10px;
top: 446px;
width: 160px;
}
Here I define exactly where this sidebar must be positionned , related to the template borders.
-back to the theory-
In the template you postion the element (sidebar or header image) after the element that should be loaded first, the content.
I am aware of this 'not being ethical correct' for many designers, but it is a choice I made and I think that it is really 'helpfull' to your readers if they don't have to wait for your blog (posts) to load, because BlogRolling is out, again.
Some examples (screenshots not relevant in this case)
- How not to do :: Plaid Toaster
- Good use of CSS in this purpose :: Life Or Something Like It....
Feel free to discuss/argue this point (or tell me that I could as well have positioned my sidebar related to the right margin *lol*)
Any questions about how to use this feature please in this thread at BlogExplosion's forum.






