How to Centre a Moodle Theme

How to Centre a Moodle Theme

by Jason Grey -
Number of replies: 1

Hi I am wondering how do I Centre a Moodle theme for example for this campus layout.

http://archivedclasses.acap.edu.au/moodle/login/index.php

Do You have any ideas or hints that you can email me. that be great if you can.

Thanks

Jason Grey

Average of ratings: -
In reply to Jason Grey

Re: How to Centre a Moodle Theme

by Jason La Greca -
Hey Jason,
in the CSS you need to set a width for your theme, then set margin-left: auto; and then margin-right: auto; this should centre it for you... for example my theme uses #pagelayout (yours may well be called something else) as the wrapper so...

#pagelayout {

 width:960px;

 margin-left:auto;

 margin-right:auto;

}

Hope this helps.


Average of ratings: Useful (1)