I worked it out, so here is the CSS. I just have to work our how to expand the main area.
.right_sidebar {
width: 20%;
float: right;
}
The width can be changed in px or %.
The Sidebar was aligned to the left so I included the float: right; and it is aligned to the right.
All I need to do is work out how to expand the main content area.
Sorted. I thought I would put it here for others to use. I don’t know if this is the correct coding or not but it works.
/* Sidebar Width */
.right_sidebar {
width: 20%;
float: right;
}
/* Blog Width */
.col-md-8 {
width: 80%;
}