Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
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

  • Options
    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.

  • Options

    yes I figured as much, but where?

  • Options

    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.

  • Options

    Thank you, that worked, appreciate the reply

Sign In or Register to comment.