• Hi,

    I’m trying to customise my blog a little to fit in with the rest of my site’s look, just wondering how to change the menu location from the right hand side to the left in the default theme.

    Thanks,

    Grant

Viewing 1 replies (of 1 total)
  • this is how we did it… though it might break things it looks to work so far…

    two files we changed…

    styles.css

    .narrowcolumn
    float: left; to float: right;
    padding:0 0 20px 45px; to padding 0 45px 20px 0;

    and

    #sidebar
    added float: right;
    and cut the margin-left:545px; down to margin-left: 45px;

    we also changed header.php
    we hard coded
    #page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg-rtl.jpg”) repeat-y top; border: none; }

    on some of the other template files we changed the body div wrapper class from widecolumn to narrowcolumn…

    we just finished these changes and haven’t tested them much but it seams to be working…

    good luck…

Viewing 1 replies (of 1 total)

The topic ‘changing menu from left to right side’ is closed to new replies.