Customizing Thanks, Roy

I would like to customize the Thanks, Roy theme by centering it. Right now it is anchored left. I have tried various changes but nothing that works. Any help is appreciated.

Hi Nancy,

Depending on what you want to center in the theme, there are a variety of CSS solutions to center content.

If you want to center the entire page, you could add something like this to your CSS file for the body tag:

body {
    width: 80%; /* The width you want */
    margin: 0 auto; /* Setting the left and right margin to 'auto' centers this element */
}

You may have to tweak a few other things in the style sheet to work (widths of other elements, for instance).

Best,
Jeremy