• Resolved Dr.T.

    (@drt-2)


    Hi!

    I am using WordPress 3.0.1 and the Twenty Ten theme.

    Is it easy to move the sidebar to the left? I am somewhat skilled in HTML and PHP but not too familiar with CSS.

    Is there any available code that shows how to do it?

    Thanks.

    Dr. T.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Relatively easy but you will need to have at least some experience with CSS. But be warned that your customisations will be over-written the next time you upgrade WordPress or the theme. For this reason, it is recommended that you consider creating a child theme for your customisations.

    Thread Starter Dr.T.

    (@drt-2)

    Esmi,

    Thank you for your reply.

    I am not an expert but I have used CSS. For example, I use CSS (Not the Visual Editor) to embellish postings.

    The only customization that I have done so far was to add a Custom Menu. Eventually, I will develop a child theme.

    In the meantime, is there any available code that shows how to do place the sidebar on the left?

    Dr. T.

    Try changing:

    #container {
        float: left;
        margin: 0 -240px 0 0;
        width: 100%;
    }

    to:

    #container {
        float: right;
        margin: 0 -240px 0 0;
        width: 100%;
    }

    in style.css.

    Thread Starter Dr.T.

    (@drt-2)

    Esmi,

    Thank you.

    It worked!

    Dr. T.

    No problem 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Left Sidebar’ is closed to new replies.