Jump to content

Logo and home page


Recommended Posts

When is first set up my website I put my logo on, how can I re size it and move it about. I cannot remember how I did it originally. I also want to use all my white space up on home page and don't know how to do it, has anyone any tips or can you point me in the right direction.

Thanks

Link to comment
Share on other sites

for positioning and width, you need to edit global.css in your theme directory:

#header_logo {
   float: left;
   width: 264px;
   display:block;
   margin-bottom:20px
}



and for the background whitespace, you can edit your global.css for a background image or color. this is an example from one of my demo sites.

body {
   width: 990px;
   margin:auto;
   background:url(../img/bg.jpg);
   background-position:top center;
   background-repeat:no-repeat;
   background-color: #ffffff;
   font-size: 11px;
   font-family: Verdana, Arial, Helvetica, Sans-Serif;
   color: #414141;
   text-align: center
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...