Help wordpress fspring theme edit

Discussion in 'WordPress' started by xception, Apr 11, 2007.

  1. #1
    this is my blog

    http://addictioncontrol.info/

    could some one help me with the codes

    1)to change the header image

    2)and also i want the sidebar to left

    pl help


    thanks in advance.
     
    xception, Apr 11, 2007 IP
  2. Bagi Zoltán

    Bagi Zoltán Well-Known Member

    Messages:
    364
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    110
    #2
    If your new menu image has the same as the old one all you have to do is to copy that into the images directory and modify this part of the css:
    #logo {
    background: url(images/newimagenam.newextension) no-repeat;
    height: 200px;
    width: 780px;
    margin-right: auto;
    margin-left: auto;
    }
    If it has a different size you should modify the height and the width attributums as well.

    Answering your second question is not so easy, because I not really know that template you use. It is possible that you will have to move this "<?php get_sidebar(); ?>" to another part of the template index.php file.
     
    Bagi Zoltán, Apr 11, 2007 IP
    xception likes this.
  3. xception

    xception Active Member

    Messages:
    274
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    58
    #3
    thanks for the post above i tried the header and finally got it done

    and regarding the sidebar i made the content to float right n sidebar to float left

    #content {
    width: 484px;
    float: right;
    display:inline;
    text-align: justify;
    padding: 10px;
    margin: 8px;
    }
    #nav {
    height: 49px;
    width: 790px;
    margin-right: auto;
    margin-left: auto;
    }

    #sidebar {
    width: 238px;
    float: left;
    line-height: 1.5em;
    display:inline;
    margin: 8px 8px 8px 0px;
    padding: 10px;
    font-size:10px;


    Now my site looks fine .thanks to Bagi Zoltán
     
    xception, Apr 11, 2007 IP