• I have some isues, I have changed the sidebar from left to right and it works but the isue is that the header image has also gone from side, it now displays on the right and I want it to pear on the left
    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • please post a link to your site to illustrate the problem.

    Thread Starter kimo1990

    (@kimo1990)

    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)

    Thread Starter kimo1990

    (@kimo1990)

    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;
    }
    Thread Starter kimo1990

    (@kimo1990)

    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

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Header position’ is closed to new replies.