• Hello

    I added some css to my additional css section to make keep my background from stretching while content was on the page. After fixing that issue, I’m having a real nasty problem with my content being cut off. Cut off meaning, nothing is visible past a certain point on the screen. Part of my player, along with my social icons in the footer can not be seen at all. I’m thinking it has something to do with values added in the code which keeps the background fixed. Any assistance would be greatly appreciated.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • @foyolyfe

    Something is outputing

    #primary {
        position: absolute; 

    Which si causing the issue… so change / add the following code (which is what I assume you added) from:

    #primary {
        width: 100% !important;
    }

    to

    #primary {
        width: 100% !important;
        position: initial;
    }
    Thread Starter foyolyfe

    (@foyolyfe)

    Update. I think I figured out whats actually going on. The page linked above loaded a little slower than usual, then I could see the footer. After it completely loaded the content was there but no footer. I’m assuming the footer isn’t staying at the bottom, and cutting off the rest of the content on the page. Is there a way I can get my footer to stay at the bottom?

    @foyolyfe – did you try the code I gave you as the footer is positioned at the bottom?

    Thread Starter foyolyfe

    (@foyolyfe)

    I’m sorry. I thought I refreshed the page before I responded. Thank you for the suggestion. The code puts the footer back at the bottom, but the background also went back to being stretched on small screens. I’m guessing its overriding the

    #primary {
        position: absolute; 
    • This reply was modified 7 years, 4 months ago by foyolyfe.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Page Cut off’ is closed to new replies.