Viewing 4 replies - 1 through 4 (of 4 total)
  • Well, there seems to be a lot of stuff in the footer css that isn’t doing anything, but try this. Open style.css in the theme and find the following:

    /* == FOOTER == */
    #bottom{
            margin: 0 auto
            position: relative
            width: 977px;
    	background:url(images/footer2.png) no-repeat;
    	height:154px;

    Put a semicolon at the end of auto and relative so it looks like this:

    /* == FOOTER == */
    #bottom{
            margin: 0 auto;
            position: relative;
            width: 977px;
    	background:url(images/footer2.png) no-repeat;
    	height:154px;

    That will get it close, but you will notice the right and left edges still don’t line up perfectly, so you may try changing the auto value to what you see below and see if that corrects the alignment. Note: I’ve only checked this in FF, so you will want to make sure it looks good in IE as well.

    /* == FOOTER == */
    #bottom{
            margin: 0 234px;
            position: relative;
            width: 977px;
    	background:url(images/footer2.png) no-repeat;
    	height:154px;
    Thread Starter soccio97

    (@soccio97)

    OK! In IE7 I didn’t need the 234px. I tried and it didn’t line up. I changed it back to “auto” and it worked perfectly.

    I’m finished bothering you now and misspelling “footer”.

    Thanks for all you help. My page looks great.

    Great…glad you got if fixed.

    Edit…I see you were in the AF for 23 years…I’m a 20-Year retiree…1979 to 1999. Glad to help a fellow AF member!

    @figaro

    I’m thinking of using this theme on my website. You had mentioned that there was lots of stuff in the footer that wasn’t needed.

    Should it be deleted or commented out? If so, which code would that be?

    Thanks.

    BTW, I served 10 years (1994-2004) in the AF before becoming disabled and medically retired. Thanks for serving!

    DoddemaGen

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Fotter image aligns to left’ is closed to new replies.