Help with code

by 2 replies
3
FIXED, Thanks Brandon!
#website design #code
  • Look for the following in your style.css file (around line 1982)...

    Code:
    #content {
        padding: 0 0 40px;
        position: relative;
    }
    Change the "padding" value to "0px". So it looks like...

    Code:
    #content {
        padding: 0px;
        position: relative;
    }
    • [ 1 ] Thanks
  • Thanks that plus another line worked.

Next Topics on Trending Feed