• Please help!
    I am a newbie, know little about coding.
    I want to edit the classic theme to make it have a fixed width, but I cannot figure it out, can anyone help me please?
    thank you in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter wp999

    (@wp999)

    can anyone help me?
    thanks

    In your theme editor click style.css. This should pull up a list of CSS code that you can edit. Throughout the code you’ll see various items listed and percentages listed to the right. You’ll want to change percentages to pixels.

    EG:

    #header {
    …somestuff…
    width:83%;
    …somestuff…
    }

    You’ll want to change it to the specific width you want:

    #header {
    …somestuff…
    width:800px;
    …somestuff…
    }

    Once you’ve done that, update the file and check out the changes it made. You’ll need to tweak it for a while until you get everything just right.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to change the Classic theme to Fixed Width?’ is closed to new replies.