Jump to content

Need Help Fixing Footer


CFulcrum

Recommended Posts

My footer does not display properly in my WHMCS client area. I need it to look the same as it does on my homepage and all of the pages outside of the whmcs.

 

I realize it has something to do with a <div> tag somewhere, but I have tried for hours to fix it and I can't find it.

 

<<snipped>>

Link to comment
Share on other sites

"#footerimages"

You need to set a negative margin, I believe, though that still won't get it inside that black bar, so the div that contains it needs to be a bit taller.

 

Use Firefox browser, with the Firebug plugin installed. You won't regret it. ;)

 

This nearly does it:

nickthewebsiteguy.gif

 

#footerimages  {
float:right;
margin:-20px;
padding:0 20px 0 0;

If you also made the copyright div 100% wide, black (or whatever color that is) and used padding instead of margin to offset it from the right side, that would likely fix it.

Link to comment
Share on other sites

Div positioning is done via CSS, so how is that cheating, exactly?

 

The way you have it right now, change the height on footerlinks to 110 from 90px; done.

#footerlinks {
background-color:#000000;
background-image:url("images/footer_nav.png");
background-position:left top;
background-repeat:repeat-x;
float:left;
height:110px; //change this
margin:0;
padding:8px 0;
text-align:left;
width:100%;
}

 

edit:

If you also change the padding on the copyright bit, it will line up with the images above it.

#copyright {
color:#CCCCCC;
float:right;
font-size:10px;
margin:0 5px 0 0;
padding:0 20px 0 0; // change this
text-align:right;
}

 

Result:

nickthewebsiteguy2.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated