View Single Post
Old 02-27-2011, 05:30 PM   #4
Adjust
Addict
Adjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel isAdjust really knows where his or her towel is
 
Adjust's Avatar
 
Posts: 351
Karma: 70000
Join Date: Jul 2010
Location: Australia
Device: ADE, iPad
Add this to your template.CSS file. (you can edit it in either a text editor like textwrangler or in dreamweaver, something which saves as UTF-8)
PHP Code:
.image {
     
margin-top1em;
     
margin-bottom1em;
     
margin-left1.2em;
     
text-aligncenter;
     
max-height100%

Then open your Cover.XHTML (or whatever it's called and change the code to match mine

PHP Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Cover</title>
        <link href="template.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
        <div id="cover">
            <div class="image">
                <img src="images/Cover.jpg" alt="Cover.jpg" height="100%" />
    </div>
    </div>
    </body>
</html>
Adjust is offline   Reply With Quote