• Resolved geoff8

    (@geoff8)


    Hey all,

    In your infinite knowledge I have a few questions – take a peek at http://www.hypebeast.info (a development environment).

    Scroll down to the very bottom, where you can see “Next Page”, how do I remove the huge white space? I can’t understand what on earth it is..!

    Also, if you scroll back up to the Search box and type something like dushkjshvkurhgkrhtkjn in, you will notice that the categories and archive lists overflow onto the footer, how do I prevent this, clear: both won’t work.

    Any help you could give is great.

Viewing 2 replies - 1 through 2 (of 2 total)
  • In your css for content div, you have:

    margin: 140px 0;

    This is shorthand for

    margin: 140px 0 140px 0;

    In other words, if you just give two values for something like margin or padding, the first value controls top and bottom, and the second value controls left and right. So, at the moment your content div has a margin of 140px at the top (to give space for your header), AND the same margin at the bottom. Change the css to

    margin: 140px 0 0 0;

    and the whitespace should go away.

    Thread Starter geoff8

    (@geoff8)

    Rad – thanks dude, such a help!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Few Errors’ is closed to new replies.