changing layout of login pages
Any suggestions on changing the code for the layout of the login pages?
Currently they are aligning to the top left of the page and I'd like to centre them and bring them down a few inches so they are more attractive.
Any suggestions on changing the code for the layout of the login pages?
Currently they are aligning to the top left of the page and I'd like to centre them and bring them down a few inches so they are more attractive.
add a new div around the login form code with a class of "wrapper"
<div class="wrapper">
login page code
</div>
the add the following CSS just before the </head> tag:
<style type="text/css">
.wrapper {
margin: 0 auto;
padding: 30px;
width: 500px;
}
</style>
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.