Options

Change discussions and categories

Like the theme, but want to reverse the locations of discussions and categories, where can I do this?
Thnanks

Comments

  • peregrineperegrine MVP
    edited January 2013

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • yes I figured as much, but where?

  • in the theme style.css
    see the float - swapping from left to right - moves it from one side to other.

    #Content {
       float: left;
       width: 540px;
       margin: 0 0 40px;
    }
    
    #Content {
       float: right;
       width: 540px;
       margin: 0 0 40px;
    }
    

    you are on your own for further changes - get a book on css or read a tutorial.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Thank you, that worked, appreciate the reply

Sign In or Register to comment.