please post a link to your site to illustrate the problem.
the header elements have the same .column-half css class which is in the same style as your sidebar’s css class .column-sidebar;
by changing from ‘float: left; ‘ to ‘float: right;’ your are messing with the alignment.
try to change this back to as it was before (?):
.column-sidebar,
.column-half {
margin-right: 3.8%;
float: left;
min-height: 1px;
}
then use more specific changes to move the sidebar; for instance by adding this line after it:
.column-sidebar { float: right; }
(not widely tested)
Thank you veary much it works, the image is now on the left, but now my sidebar is on the left and i want it on the right
keep the change in this style, i.e. change to ‘float:left;’:
.column-content {
margin-left: 3.8%;
float: left;
min-height: 1px;
}
I changed this
`.column-sidebar { float: right; }
.column-half {
margin-right: 3.8%;
float: left;
min-height: 1px;
}
.column-content {
margin-left: 3.8%;
float: left;
min-height: 1px;
And now the content is on the left and the header image on the right,
could this cause problems? At the moment it seems ok
The bolded is what I have changed