According to studies, users are more likely to click on ads on the left sidebar than the right sidebar. Dollars Blog and many other blogs use the default (kubrick) theme. Personally I think the default theme is the best and the easiest to modify. Unfortunately, they put the sidebar on the right by default.

Below I will tell you how to easily switch your sidebar from the right to the left. This only works for Kubrick default theme in wordpress. If you have some other theme you are out of luck, sorry. That is another reason why it’s best to stick with the default theme, because there is a lot of information out there on how to re-design it.

How to move Kubrick left sidebar to right:

Go to the default themes folder. Open up the style.css file.

Search for this code:

.narrowcolumn {
float: left;
padding: 0 0 20px 45px;
margin: 0px 0 0;
width: 450px;
}

Replace it with this code:

.narrowcolumn {
float: right;
padding: 0 45px 20px 0px;
margin: 0px 0 0;
width: 450px;
}

Now look for this code:

#sidebar
{
padding: 20px 0 10px 0;
margin-left: 545px;
width: 190px;
}

Replace it with this instead:

#sidebar
{
padding: 20px 0 10px 0;
margin-left: 20px;
width: 190px;
}

Now the final step is you will need to replace the old background image with this new updated one available from my site here. The background image is found in the images folder inside the default themes folder.

And that is it. Now you have permanently increased your long term profits for your wordpress blog!